summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/apcupsd.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-03-12 17:53:41 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-03-12 18:52:10 +0100
commit3358906395d2692dcda515418d6300ebed29a690 (patch)
tree9db9ff0f9bb3172dd5ad9d4fe87e3c1e67688383 /nixos/modules/services/monitoring/apcupsd.nix
parent03c6c1608bfd2488ab82346c8f656fe1b9abdf93 (diff)
downloadnixpkgs-3358906395d2692dcda515418d6300ebed29a690.tar
nixpkgs-3358906395d2692dcda515418d6300ebed29a690.tar.gz
nixpkgs-3358906395d2692dcda515418d6300ebed29a690.tar.bz2
nixpkgs-3358906395d2692dcda515418d6300ebed29a690.tar.lz
nixpkgs-3358906395d2692dcda515418d6300ebed29a690.tar.xz
nixpkgs-3358906395d2692dcda515418d6300ebed29a690.tar.zst
nixpkgs-3358906395d2692dcda515418d6300ebed29a690.zip
apcupsd: Description -> description
Diffstat (limited to 'nixos/modules/services/monitoring/apcupsd.nix')
-rw-r--r--nixos/modules/services/monitoring/apcupsd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/apcupsd.nix b/nixos/modules/services/monitoring/apcupsd.nix
index 58ec8a49694..38fd53653d6 100644
--- a/nixos/modules/services/monitoring/apcupsd.nix
+++ b/nixos/modules/services/monitoring/apcupsd.nix
@@ -168,11 +168,11 @@ in
     # shuts off power.) Copied from here:
     # http://forums.opensuse.org/english/get-technical-help-here/applications/479499-apcupsd-systemd-killpower-issues.html
     systemd.services.apcupsd-killpower = {
+      description = "APC UPS Kill Power";
       after = [ "shutdown.target" ]; # append umount.target?
       before = [ "final.target" ];
       wantedBy = [ "shutdown.target" ];
       unitConfig = {
-        Description = "APC UPS Kill Power";
         ConditionPathExists = "/run/apcupsd/powerfail";
         DefaultDependencies = "no";
       };