From 5eac94fc28a9195c584348683afadda2fae3d99c Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 7 May 2023 23:34:42 +0100 Subject: [PATCH] Use proprietary nvidia driver for odyssey --- hosts/odyssey/hardware-configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/odyssey/hardware-configuration.nix b/hosts/odyssey/hardware-configuration.nix index 02814e6..8d6d6f7 100644 --- a/hosts/odyssey/hardware-configuration.nix +++ b/hosts/odyssey/hardware-configuration.nix @@ -13,6 +13,9 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; + hardware.nvidia.modesetting.enable = true; + services.xserver.videoDrivers = [ "nvidia" ]; + fileSystems."/" = { device = "rpool/system/root"; fsType = "zfs";