power-profiles-daemon: default auto switching to false
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
066e5d203a
commit
ecf4bf815a
2 changed files with 5 additions and 1 deletions
|
@ -12,7 +12,7 @@ with lib; let
|
||||||
in {
|
in {
|
||||||
options.custom.services.power-profiles-daemon = {
|
options.custom.services.power-profiles-daemon = {
|
||||||
enable = mkOption {default = false;};
|
enable = mkOption {default = false;};
|
||||||
auto = mkOption {default = true;};
|
auto = mkOption {default = false;};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
custom = {
|
custom = {
|
||||||
full = true;
|
full = true;
|
||||||
profile = "desktop"; # Inherit desktop profile
|
profile = "desktop"; # Inherit desktop profile
|
||||||
|
|
||||||
|
services = {
|
||||||
|
power-profiles-daemon.auto = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
#!! Rebuild offline - drastically increases initial download and resulting closure size
|
#!! Rebuild offline - drastically increases initial download and resulting closure size
|
||||||
|
|
Loading…
Add table
Reference in a new issue