20 lines
311 B
Nix
20 lines
311 B
Nix
{ ... }:
|
|
|
|
{
|
|
boot.kernelParams = [
|
|
"nvidia-drm.modeset=1"
|
|
"ibt=off"
|
|
];
|
|
|
|
hardware.nvidia = {
|
|
open = true;
|
|
modesetting.enable = true;
|
|
prime = {
|
|
offload.enable = true;
|
|
intelBusId = "PCI:0:2:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
};
|
|
};
|
|
|
|
hardware.graphics.enable = true;
|
|
}
|