Compare commits

..

No commits in common. "055425a89998b05e8a2caf251eac92fa712fe48e" and "b5eb89382f38ae57ea27471df0c817f8b208220a" have entirely different histories.

5 changed files with 277 additions and 263 deletions

522
flake.lock generated

File diff suppressed because it is too large Load diff

View file

@ -11,10 +11,7 @@
inputs.systems.follows = "systems"; inputs.systems.follows = "systems";
}; };
nur = { nur.url = "github:nix-community/NUR";
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";

View file

@ -1,9 +1,13 @@
{...}: { { ... }:
{
imports = [ imports = [
../../modules/home ../../modules/home
]; ];
modules.home = { modules.home = {
editors.vscode.enable = true;
apps = { apps = {
flatpak.enable = true; flatpak.enable = true;
jetbrainsToolbox.enable = true; jetbrainsToolbox.enable = true;
@ -12,8 +16,7 @@
}; };
editors = { editors = {
# neovim.enable = true; TODO: Not stable yet neovim.enable = true;
vscode.enable = true;
}; };
shell = { shell = {
@ -24,3 +27,4 @@
}; };
}; };
} }

View file

@ -20,7 +20,6 @@ in
signing = { signing = {
signByDefault = true; signByDefault = true;
format = "openpgp";
key = "B19E3F4A2D806AB4793FDF2FC73D37CBED7BFC77"; key = "B19E3F4A2D806AB4793FDF2FC73D37CBED7BFC77";
}; };

View file

@ -51,7 +51,7 @@ in
nvidiaSettings = true; nvidiaSettings = true;
# Optionally, you may need to select the appropriate driver version for your specific GPU. # Optionally, you may need to select the appropriate driver version for your specific GPU.
package = config.boot.kernelPackages.nvidiaPackages.beta; package = config.boot.kernelPackages.nvidiaPackages.latest;
}; };
}; };