Compare commits

..

4 commits

Author SHA1 Message Date
055425a899
Update OS
All checks were successful
check / check (push) Successful in 35s
2025-02-16 14:46:30 +01:00
20599680bf
home(perso-desktop): Move vscode in editors block 2025-02-11 23:50:48 +01:00
094797efa5
home(perso-desktop): Disable neovim (Not stable yet) 2025-02-11 23:49:07 +01:00
20da31b650
nvidia: Test beta 2025-02-11 23:48:33 +01:00
5 changed files with 263 additions and 277 deletions

522
flake.lock generated

File diff suppressed because it is too large Load diff

View file

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

View file

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

View file

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

View file

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