nix-dotfiles/machines/galadriel/nvidia.nix

54 lines
1.8 KiB
Nix
Raw Permalink Normal View History

2024-01-14 19:10:42 +01:00
{ config, lib, pkgs, ... }:
{
# Enable OpenGL
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
2024-01-14 19:10:42 +01:00
# Load nvidia driver for Xorg and Wayland
services.xserver.videoDrivers = ["nvidia"];
#boot with nvidia kernel module
boot.initrd.kernelModules = [ "nvidia" ];
hardware.nvidia = {
# Modesetting is required.
modesetting.enable = true;
# Nvidia power management. Experimental, and can cause sleep/suspend to fail.
#powerManagement.enable = true;
# Fine-grained power management. Turns off GPU when not in use.
# Experimental and only works on modern Nvidia GPUs (Turing or newer).
#powerManagement.finegrained = true;
# Use the NVidia open source kernel module (not to be confused with the
# independent third-party "nouveau" open source driver).
# 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
# Only available from driver 515.43.04+
# Currently alpha-quality/buggy, so false is currently the recommended setting.
2024-03-22 12:55:22 +01:00
open = false;
2024-01-14 19:10:42 +01:00
2024-03-22 12:55:22 +01:00
# Enable the Nvidia settings menu,
# accessible via `nvidia-settings`.
2024-03-22 12:55:22 +01:00
#nvidiaSettings = true;
2024-01-14 19:10:42 +01:00
2024-03-22 12:55:22 +01:00
# Optionally, you may need to select the appropriate driver version for your specific GPU.
package = config.boot.kernelPackages.nvidiaPackages.stable;
};
2024-01-14 21:00:30 +01:00
2024-03-22 12:55:22 +01:00
# Enable the CUDA toolkit
#install packages
environment.systemPackages = with pkgs; [
2024-05-31 13:59:46 +02:00
#cudaPackages.cudnn
#cudaPackages.cudatoolkit
nvtopPackages.nvidia
#cudaPackages.tensorrt_8_6_0 #needs to be added manually, to the store and is a pain because of the license agreement and garbage collection
2024-03-22 12:55:22 +01:00
];
2024-01-14 21:00:30 +01:00
2024-03-22 12:55:22 +01:00
}