Add NVIDIA & CUDA Cachix Substituter

David Crompton 2023-08-01 12:48:49 -04:00
parent 54b59701c4
commit 15ee9c491f
2 changed files with 47 additions and 0 deletions

View File

@ -4,6 +4,8 @@
imports = imports =
[ [
./hardware-configuration.nix ./hardware-configuration.nix
# Enable Nvidia driver and CUDA
./nvidia.nix
# Set of Modules Defining System Configuration # Set of Modules Defining System Configuration
./modules.nix ./modules.nix
# Set of system services, like ssh, and RDP/VNC # Set of system services, like ssh, and RDP/VNC

View File

@ -0,0 +1,45 @@
{ config, lib, pkgs, ...}: {
# Make sure opengl is enabled
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
# Tell Xorg to use the nvidia driver (also valid for Wayland)
services.xserver.videoDrivers = [
# For the RTX 4000
"nvidia"
# For the Older GPU
"nouveau"
];
hardware.nvidia = {
# Modesetting is needed for most Wayland compositors
modesetting.enable = true;
# Use the open source version of the kernel module
# Only available on driver 515.43.04+
open = true;
# Enable the nvidia settings menu
nvidiaSettings = true;
# Optionally, you may need to select the appropriate driver version for your specific GPU.
package = config.boot.kernelPackages.nvidiaPackages.stable;
};
# Allow Unfree, Nvidia, CUDA, and derived packages.
nixpkgs.config.allowUnfree = true;
# Use Prebuilt Cached Versions of CUDA Packages
nix.settings = {
trusted-substituters = [
"https://cuda-maintainers.cachix.org"
];
trusted-public-keys = [
"cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E="
];
};
}