From 6e3f665fea9b993e7703760d9f7f1aa149eaafb2 Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Fri, 20 Sep 2024 17:24:37 +0200 Subject: [PATCH] feat(Zephyrus): Added git system package --- hosts/Zephyrus/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/Zephyrus/default.nix b/hosts/Zephyrus/default.nix index 3c1b325..c30abab 100644 --- a/hosts/Zephyrus/default.nix +++ b/hosts/Zephyrus/default.nix @@ -37,10 +37,13 @@ }; }; + # Programs + environment.systemPackages = [pkgs.git]; + # NVIDIA nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["nvidia-x11" "nvidia-settings"]; - hardware.opengl.enable = true; + hardware.graphics.enable = true; services.xserver.videoDrivers = ["nvidia"]; @@ -54,4 +57,6 @@ nvidiaBusId = "PCI:1:0:0"; }; }; + + system.stateVersion = "24.11"; }