summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2023-09-23 15:44:45 -0400
committerJon Santmyer <jon@jonsantmyer.com>2023-09-23 15:44:45 -0400
commit93a063e7aa9cc885c289d57b903f9f0036718bb0 (patch)
treeaa84ca68303af6e6dc5f27c6c4cdd039f5c6eabf
parent4abb25ea7d3876899e641a8a16281203bd164d53 (diff)
downloadnix-config-93a063e7aa9cc885c289d57b903f9f0036718bb0.tar.gz
nix-config-93a063e7aa9cc885c289d57b903f9f0036718bb0.tar.bz2
nix-config-93a063e7aa9cc885c289d57b903f9f0036718bb0.zip
fix nvidia powerManagement option
-rw-r--r--.gitignore2
-rw-r--r--systems/jonbox/default.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 6fe43c5..63f1fef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-.lock
+*.lock
diff --git a/systems/jonbox/default.nix b/systems/jonbox/default.nix
index 4456e6e..0f53a7a 100644
--- a/systems/jonbox/default.nix
+++ b/systems/jonbox/default.nix
@@ -32,8 +32,8 @@
hardware.nvidia = {
modesetting.enable = true;
- powerManagment.enable = false;
- powerManagment.finegrained = false;
+ powerManagement.enable = false;
+ powerManagement.finegrained = false;
open = true;
nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.stable;