Disable auto-cpufreq, flake update.

This commit is contained in:
jay
2025-07-25 13:53:08 -04:00
parent 6372c54d4c
commit 643eb1cb33
3 changed files with 8 additions and 8 deletions

12
flake.lock generated
View File

@@ -401,11 +401,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1753435745, "lastModified": 1753447932,
"narHash": "sha256-DcwYM03dorV47ILK9WNF7tmOPQxbEOvPUFPL44yS+SE=", "narHash": "sha256-uKZ2HAJlQK4WUowggB4pVGFFqMVqVTkQaQ2+48/J+pY=",
"owner": "fufexan", "owner": "fufexan",
"repo": "nix-gaming", "repo": "nix-gaming",
"rev": "a73e77822e6e21c9275b484ae4c00e56cb689aec", "rev": "1e3c1bd1461e9296334e039eeb20f7100153e98a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -885,11 +885,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1753417538, "lastModified": 1753464045,
"narHash": "sha256-Z/MbHMjvHoC57sQS43/oLwzEQebT5ST8MRU8Zcb5428=", "narHash": "sha256-UZxNXquN9GipmgzNQJ5W1V2fs/t45PEpfgfESv6Z/a4=",
"owner": "0xc000022070", "owner": "0xc000022070",
"repo": "zen-browser-flake", "repo": "zen-browser-flake",
"rev": "d04bdc75b3d203b951ce00cbb6a7ab410ab110c6", "rev": "d90982fa0964c701abce2d8968f9a08f2e15d55a",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -2,7 +2,7 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
programs.auto-cpufreq = { programs.auto-cpufreq = {
enable = true; enable = false;
settings = { settings = {
charger = { charger = {
governor = "performance"; governor = "performance";

View File

@@ -1,3 +1,3 @@
{ pkgs, ...}: { { pkgs, ...}: {
services.power-profiles-daemon.enable = "false"; # services.power-profiles-daemon.enable = "true";
} }