nvidia: add missing semicolon for nix configuration. (#565)

This commit is contained in:
Mr Unhappy 2024-03-31 05:31:03 -06:00 committed by GitHub
parent b9ec5f4f38
commit 7f466c8885
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -160,8 +160,8 @@ For Nix users, the equivalent of the above is
boot.kernelParams = [ "nvidia.NVreg_PreserveVideoMemoryAllocations=1" ];
hardware.nvidia.powerManagement.enable = true
hardware.nvidia.powerManagement.enable = true;
# Making sure to use the proprietary drivers until the issue above is fixed upstream
hardware.nvidia.open = false
hardware.nvidia.open = false;
```