This commit is contained in:
2025-05-05 22:54:06 +02:00
parent d8b75fc8b4
commit ff07a08b78
11 changed files with 152 additions and 27 deletions

View File

@@ -0,0 +1,18 @@
{ config, ... }:
{
hardware.graphics.enable = true;
hardware.nvidia = {
modesetting.enable = true;
package = config.boot.kernelPackages.nvidiaPackages.beta;
open = true;
prime = {
offload = {
enable = true;
enableOffloadCmd = true;
};
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
};
};
}