From 658f424cf84f45558f7bdbde650660379bdf4d3e Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 20 Jan 2026 13:34:56 -0500 Subject: [PATCH] Enable Nvidia sync mode on strixi-minaj Switch from offload mode to sync mode for better performance with external displays. Co-Authored-By: Claude Opus 4.5 --- nixos/machines/strixi-minaj.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/machines/strixi-minaj.nix b/nixos/machines/strixi-minaj.nix index 7e0a32fa..6fd8288b 100644 --- a/nixos/machines/strixi-minaj.nix +++ b/nixos/machines/strixi-minaj.nix @@ -55,6 +55,8 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; hardware.nvidia.powerManagement.enable = true; + hardware.nvidia.prime.offload.enable = lib.mkForce false; + hardware.nvidia.prime.sync.enable = lib.mkForce true; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;