mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-28 20:31:51 +01:00
49 lines
1.6 KiB
Nix
49 lines
1.6 KiB
Nix
{pkgs-unstable, ...}: {
|
|
# ===============================================================================================
|
|
# for Nvidia GPU
|
|
# ===============================================================================================
|
|
|
|
# https://wiki.hyprland.org/Nvidia/
|
|
boot.kernelParams = [
|
|
"nvidia.NVreg_PreserveVideoMemoryAllocations=1"
|
|
# Since NVIDIA does not load kernel mode setting by default,
|
|
# enabling it is required to make Wayland compositors function properly.
|
|
"nvidia-drm.fbdev=1"
|
|
];
|
|
services.xserver.videoDrivers = ["nvidia"]; # will install nvidia-vaapi-driver by default
|
|
hardware.nvidia = {
|
|
open = false;
|
|
# Optionally, you may need to select the appropriate driver version for your specific GPU.
|
|
# https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/os-specific/linux/nvidia-x11/default.nix
|
|
# package = config.boot.kernelPackages.nvidiaPackages.stable;
|
|
|
|
# required by most wayland compositors!
|
|
modesetting.enable = true;
|
|
powerManagement.enable = true;
|
|
};
|
|
|
|
hardware.nvidia-container-toolkit.enable = true;
|
|
hardware.graphics = {
|
|
enable = true;
|
|
# needed by nvidia-docker
|
|
enable32Bit = true;
|
|
};
|
|
# disable cudasupport before this issue get fixed:
|
|
# https://github.com/NixOS/nixpkgs/issues/338315
|
|
nixpkgs.config.cudaSupport = false;
|
|
|
|
nixpkgs.overlays = [
|
|
(_: super: {
|
|
blender = super.blender.override {
|
|
# https://nixos.org/manual/nixpkgs/unstable/#opt-cudaSupport
|
|
cudaSupport = true;
|
|
waylandSupport = true;
|
|
};
|
|
|
|
# ffmpeg-full = super.ffmpeg-full.override {
|
|
# withNvcodec = true;
|
|
# };
|
|
})
|
|
];
|
|
}
|