This commit is contained in:
4DBug
2026-08-24 13:29:21 -05:00
parent 94706e92d1
commit 26facea264
4 changed files with 47 additions and 0 deletions
Generated
+21
View File
@@ -21,6 +21,26 @@
"type": "github" "type": "github"
} }
}, },
"auto-cpufreq": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1787549773,
"narHash": "sha256-ZSTNqXLMfk+0er/w6PVANwRmbIUt0q9sz5FyoallQYU=",
"owner": "AdnanHodzic",
"repo": "auto-cpufreq",
"rev": "30bc44de0492689059dbf2eae49d2438333fdc63",
"type": "github"
},
"original": {
"owner": "AdnanHodzic",
"repo": "auto-cpufreq",
"type": "github"
}
},
"base16": { "base16": {
"inputs": { "inputs": {
"fromYaml": "fromYaml" "fromYaml": "fromYaml"
@@ -1282,6 +1302,7 @@
"root": { "root": {
"inputs": { "inputs": {
"aerothemeplasma": "aerothemeplasma", "aerothemeplasma": "aerothemeplasma",
"auto-cpufreq": "auto-cpufreq",
"catppuccin": "catppuccin", "catppuccin": "catppuccin",
"catppuccin-userstyles-nix": "catppuccin-userstyles-nix", "catppuccin-userstyles-nix": "catppuccin-userstyles-nix",
"copyparty": "copyparty", "copyparty": "copyparty",
+5
View File
@@ -93,5 +93,10 @@
millennium.url = "github:SteamClientHomebrew/Millennium?dir=packages/nix"; millennium.url = "github:SteamClientHomebrew/Millennium?dir=packages/nix";
fetch.url = "github:areofyl/fetch"; fetch.url = "github:areofyl/fetch";
auto-cpufreq = {
url = "github:AdnanHodzic/auto-cpufreq";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
} }
+19
View File
@@ -0,0 +1,19 @@
{
den.aspects.autocpufreq = {
nixos = {
programs.auto-cpufreq.enable = true;
programs.auto-cpufreq.settings = {
charger = {
governor = "performance";
turbo = "auto";
};
battery = {
governor = "powersave";
turbo = "auto";
};
};
};
};
}
+2
View File
@@ -19,6 +19,8 @@
niri niri
noctalia noctalia
autocpufreq
]; ];
nixos = { nixos = {