diff options
| author | Seth Flynn <[email protected]> | 2025-02-10 14:28:12 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-02-10 20:26:23 -0500 |
| commit | cd21ca8e9894f7d8dbe7628952c6345174c3eb15 (patch) | |
| tree | 19980d81a8e63fb217fab6e32c5c1911d423d013 /systems/glados/default.nix | |
| parent | 73046857ef20f99983aaa95c04e0061615478583 (diff) | |
nixos/nvidia: don't use gsp firmware on proprietary driver
Diffstat (limited to 'systems/glados/default.nix')
| -rw-r--r-- | systems/glados/default.nix | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/systems/glados/default.nix b/systems/glados/default.nix index 831c90f..0d64af7 100644 --- a/systems/glados/default.nix +++ b/systems/glados/default.nix @@ -19,13 +19,9 @@ }; boot = { - kernelParams = - [ - "amd_pstate=active" - ] - # Don't use GSP Firmware on proprietary driver - # https://github.com/NVIDIA/open-gpu-kernel-modules/issues/693 - ++ lib.optional (!config.hardware.nvidia.open) "nvidia.NVreg_EnableGpuFirmware=0"; + kernelParams = [ + "amd_pstate=active" + ]; lanzaboote = { enable = true; |
