From e35c6505c11fffeda219383f143437f2481e76eb Mon Sep 17 00:00:00 2001 From: benstrb Date: Sat, 17 Jan 2026 21:14:17 +0100 Subject: [PATCH] non important commit --- configuration/modules/graphics.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/configuration/modules/graphics.nix b/configuration/modules/graphics.nix index 00bd5e5..23f4b03 100644 --- a/configuration/modules/graphics.nix +++ b/configuration/modules/graphics.nix @@ -1,5 +1,7 @@ {config, ...}: { - services.xserver.videoDrivers = ["nvidia"]; + services.xserver.videoDrivers = [ + "nvidia" + ]; hardware = { graphics.enable = true; @@ -9,6 +11,13 @@ powerManagement.enable = true; open = false; package = config.boot.kernelPackages.nvidiaPackages.legacy_470; + + prime = { + sync.enable = true; + + intelBusId = "PCI:0:2:0"; + nvidiaBusId = "PCI:1:0:0"; + }; }; }; }