nixos/hosts/desktop/nvidia.nix

24 lines
503 B
Nix
Raw 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
fireproof.home-manager.wayland.windowManager.hyprland.settings = {
env = [
"LIBVA_DRIVER_NAME,nvidia"
"__GLX_VENDOR_LIBRARY_NAME,nvidia"
"NVD_BACKEND,direct"
];
cursor.no_hardware_cursors = true;
};
2025-02-20 14:09:12 +01:00
}