From 6c1109303399e0c67ad0ddd41556628d3e5079ac Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 18 Jul 2025 13:00:03 +0200 Subject: [PATCH] Select proprietary NVIDIA driver in raccoon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The NVIDIA GTX 960 from 2016 has the Maxwell architecture, and NixOS suggests using the proprietary driver for older than Turing: > It is suggested to use the open source kernel modules on Turing or > later GPUs (RTX series, GTX 16xx), and the closed source modules > otherwise. Reviewed-by: Aleix Boné --- m/raccoon/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/m/raccoon/configuration.nix b/m/raccoon/configuration.nix index 4a8a0ec..c916c02 100644 --- a/m/raccoon/configuration.nix +++ b/m/raccoon/configuration.nix @@ -51,6 +51,7 @@ # Configure Nvidia driver to use with CUDA hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.production; + hardware.nvidia.open = false; # Maxwell is older than Turing architecture hardware.graphics.enable = true; nixpkgs.config.nvidia.acceptLicense = true; services.xserver.videoDrivers = [ "nvidia" ];