diff options
-rw-r--r-- | host/hephaestus.nix | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/host/hephaestus.nix b/host/hephaestus.nix index 3c22dbe..f02b53c 100644 --- a/host/hephaestus.nix +++ b/host/hephaestus.nix @@ -32,11 +32,16 @@ networkmanager.enable = true; }; - services.xserver = { - videoDrivers = [ "nvidia" ]; - }; +# services.xserver = { +# videoDrivers = [ "nvidia" ]; +# }; + + programs.niri.enable = true; - hardware.nvidia.package = pkgs.linuxPackages.nvidia_x11; + hardware.nvidia = { + open = true; + package = pkgs.linuxPackages.nvidia_x11; + }; hardware.bluetooth.enable = true; services.blueman.enable = true; |