nixos/hosts/desktop/nvidia.nix

22 lines
469 B
Nix
Raw Permalink Normal View History

2025-08-21 10:31:50 +02:00
{config, ...}: {
2025-03-10 22:30:52 +01:00
hardware = {
graphics = {
enable = true;
};
nvidia = {
open = true;
modesetting.enable = true;
2025-04-15 20:13:15 +02:00
package = config.boot.kernelPackages.nvidiaPackages.beta;
2025-03-10 22:30:52 +01:00
};
2025-02-20 14:09:12 +01:00
};
services.xserver.videoDrivers = ["nvidia"];
2025-02-20 22:50:06 +01:00
2025-08-23 23:00:03 +02:00
fireproof.home-manager.programs.niri.settings = {
environment = {
"LIBVA_DRIVER_NAME" = "nvidia";
"__GLX_VENDOR_LIBRARY_NAME" = "nvidia";
"NVD_BACKEND" = "direct";
};
};
2025-02-20 14:09:12 +01:00
}