summary refs log tree commit diff
diff options
context:
space:
mode:
authorAles Huzik <me@aguzik.net>2018-02-16 14:07:28 +1100
committerAles Huzik <me@aguzik.net>2018-02-21 22:17:33 +1100
commit444cdf0454495919538d8d7e1484fe84ccbec2e3 (patch)
tree8e23485a7f0b2eda8cc96ba43c08e510603619aa
parent9b25b9347d97caf55732213dbf45653f866f8114 (diff)
downloadnixpkgs-444cdf0454495919538d8d7e1484fe84ccbec2e3.tar
nixpkgs-444cdf0454495919538d8d7e1484fe84ccbec2e3.tar.gz
nixpkgs-444cdf0454495919538d8d7e1484fe84ccbec2e3.tar.bz2
nixpkgs-444cdf0454495919538d8d7e1484fe84ccbec2e3.tar.lz
nixpkgs-444cdf0454495919538d8d7e1484fe84ccbec2e3.tar.xz
nixpkgs-444cdf0454495919538d8d7e1484fe84ccbec2e3.tar.zst
nixpkgs-444cdf0454495919538d8d7e1484fe84ccbec2e3.zip
nixos/acpid: add option to log events
-rw-r--r--nixos/modules/services/hardware/acpid.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/nixos/modules/services/hardware/acpid.nix b/nixos/modules/services/hardware/acpid.nix
index f69706ebff3..0f05876aee3 100644
--- a/nixos/modules/services/hardware/acpid.nix
+++ b/nixos/modules/services/hardware/acpid.nix
@@ -53,6 +53,12 @@ in
         description = "Whether to enable the ACPI daemon.";
       };
 
+      logEvents = mkOption {
+        type = types.bool;
+        default = false;
+        description = "Log all event activity.";
+      };
+
       handlers = mkOption {
         type = types.attrsOf (types.submodule {
           options = {
@@ -142,7 +148,7 @@ in
         ConditionPathExists = [ "/proc/acpi" ];
       };
 
-      script = "acpid --confdir ${acpiConfDir}";
+      script = "acpid ${optionalString config.services.acpid.logEvents "--logevents"} --confdir ${acpiConfDir}";
     };
 
   };