diff --git a/nodes/hosts/nixwork/configuration.nix b/nodes/hosts/nixwork/configuration.nix index 5f13216..c4950a7 100644 --- a/nodes/hosts/nixwork/configuration.nix +++ b/nodes/hosts/nixwork/configuration.nix @@ -15,6 +15,7 @@ # Not working yet. ./services/fprintd.nix ./services/lidswitch.nix + ./services/power-profiles-daemon.nix ./services/touchpad.nix ./system/bootloader.nix ./system/filesystems.nix diff --git a/nodes/hosts/nixwork/services/power-profiles-daemon.nix b/nodes/hosts/nixwork/services/power-profiles-daemon.nix new file mode 100644 index 0000000..fc492e3 --- /dev/null +++ b/nodes/hosts/nixwork/services/power-profiles-daemon.nix @@ -0,0 +1,3 @@ +{ pkgs, ...}: { + services.power-profiles-daemon.enable = "false"; +}