2023-11-25 17:13:46 -05:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2023-10-17 17:53:10 -04:00
|
|
|
# Enable OpenGL
|
|
|
|
hardware.opengl = {
|
|
|
|
enable = true;
|
|
|
|
driSupport = true;
|
|
|
|
driSupport32Bit = true;
|
2023-11-25 03:24:12 -05:00
|
|
|
|
|
|
|
extraPackages = with pkgs; [
|
|
|
|
vaapiVdpau
|
|
|
|
];
|
2023-10-17 17:53:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
# Load nvidia driver for Xorg and Wayland
|
|
|
|
services.xserver.videoDrivers = ["nvidia"];
|
|
|
|
|
|
|
|
hardware.nvidia = {
|
|
|
|
# Modesetting is required.
|
|
|
|
modesetting.enable = true;
|
|
|
|
|
|
|
|
# Nvidia power management. Experimental, and can cause sleep/suspend to fail.
|
|
|
|
powerManagement.enable = false;
|
|
|
|
# Fine-grained power management. Turns off GPU when not in use.
|
|
|
|
# Experimental and only works on modern Nvidia GPUs (Turing or newer).
|
|
|
|
powerManagement.finegrained = false;
|
|
|
|
|
|
|
|
# Use the NVidia open source kernel module (not to be confused with the
|
|
|
|
# independent third-party "nouveau" open source driver).
|
2023-11-22 15:33:16 -05:00
|
|
|
# Support is limited to the Turing and later architectures. Full list of
|
|
|
|
# supported GPUs is at:
|
|
|
|
# https://github.com/NVIDIA/open-gpu-kernel-modules#compatible-gpus
|
2023-10-17 17:53:10 -04:00
|
|
|
# Only available from driver 515.43.04+
|
|
|
|
# Do not disable this unless your GPU is unsupported or if you have a good reason to.
|
2023-11-05 16:17:31 -05:00
|
|
|
open = true;
|
2023-10-17 17:53:10 -04:00
|
|
|
|
|
|
|
# Enable the Nvidia settings menu,
|
2023-11-22 15:33:16 -05:00
|
|
|
# accessible via `nvidia-settings`.
|
2023-10-17 17:53:10 -04:00
|
|
|
nvidiaSettings = true;
|
|
|
|
|
|
|
|
# Optionally, you may need to select the appropriate driver version for your specific GPU.
|
|
|
|
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
|
|
|
};
|
|
|
|
}
|