mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
15 lines
329 B
Nix
15 lines
329 B
Nix
_: {
|
|
hardware.graphics = {
|
|
enable = true;
|
|
};
|
|
services.xserver.videoDrivers = ["nvidia"];
|
|
hardware.nvidia = {
|
|
open = true;
|
|
modesetting.enable = true;
|
|
powerManagement.enable = true;
|
|
nvidiaSettings = true;
|
|
};
|
|
|
|
# Avoid nvidia driver from crashing the system
|
|
boot.kernelParams = ["pcie_aspm=off"];
|
|
}
|