diff --git a/options/custom/services/default.nix b/options/custom/services/default.nix index 390e599..3cbc803 100644 --- a/options/custom/services/default.nix +++ b/options/custom/services/default.nix @@ -46,7 +46,6 @@ with lib; { #// mako.enable = true; #// network-manager-applet.enable = true; ollama.enable = true; - power-profiles-daemon.enable = true; samba.enable = true; #// swayidle.enable = true; swaync.enable = true; diff --git a/profiles/desktop/default.nix b/profiles/desktop/default.nix index 1ee18df..9a6a69d 100644 --- a/profiles/desktop/default.nix +++ b/profiles/desktop/default.nix @@ -2,6 +2,11 @@ custom = { full = true; profile = "desktop"; + desktop = "niri"; wallpaper = true; + + services = { + power-profiles-daemon.enable = true; + }; }; } diff --git a/profiles/laptop/default.nix b/profiles/laptop/default.nix index 6dab9a4..8e930f5 100644 --- a/profiles/laptop/default.nix +++ b/profiles/laptop/default.nix @@ -2,9 +2,15 @@ custom = { full = true; profile = "desktop"; # Inherit desktop profile + desktop = "niri"; services = { - power-profiles-daemon.auto = true; + #// auto-cpufreq.enable = true; + + power-profiles-daemon = { + enable = true; + auto = true; + }; }; };