dnscrypt-proxy2: remove erroneous config
[julm/julm-nix.git] / nixos / profiles / acpid.nix
index 6bc1c8c65584d0768aab1599c527f3972882de3d..488a1f4529bc6f9eecae4cb3ca974b29171c92c1 100644 (file)
@@ -1,9 +1,8 @@
 { config, lib, pkgs, ... }:
 {
 hardware.acpilight.enable = true;
-boot.kernelModules = [ "acpi_cpufreq" ];
-system.activationScripts.acPlug = ''
-  PATH="${pkgs.kmod}/bin:$PATH"
+boot.kernelModules = [ "msr" "acpi_cpufreq" ];
+systemd.services.acpid.postStart = ''
   ${pkgs.acpi}/bin/acpi -a | grep -q 'Adapter .*: on-line' ||
   ${pkgs.linuxPackages.cpupower}/bin/cpupower frequency-set -g powersave
 '';