summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-08-05 23:51:18 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2017-08-05 23:51:18 +0200
commitf1e004317efd1a8b350d8d15a32432fd31618bfe (patch)
tree67107feb57f61fb32cc14c1226a6bfc42cafa188
parent7268247d54b79d00ae39584ffb5f4c49d5ea10b8 (diff)
downloadnixos-f1e004317efd1a8b350d8d15a32432fd31618bfe.tar
nixos-f1e004317efd1a8b350d8d15a32432fd31618bfe.tar.gz
nixos-f1e004317efd1a8b350d8d15a32432fd31618bfe.tar.bz2
nixos-f1e004317efd1a8b350d8d15a32432fd31618bfe.tar.xz
nixos-f1e004317efd1a8b350d8d15a32432fd31618bfe.zip
Work on timers
-rw-r--r--custom/uucp.nix2
-rw-r--r--ymir.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/custom/uucp.nix b/custom/uucp.nix
index 98a2b6c9..4e3f2e92 100644
--- a/custom/uucp.nix
+++ b/custom/uucp.nix
@@ -284,7 +284,7 @@ in {
284 }; 284 };
285 285
286 systemd.timers."uucico@" = { 286 systemd.timers."uucico@" = {
287 timerConfig.OnActiveSec = cfg.interval; 287 timerConfig.OnUnitActiveSec = cfg.interval;
288 }; 288 };
289 289
290 systemd.targets."multi-user" = { 290 systemd.targets."multi-user" = {
diff --git a/ymir.nix b/ymir.nix
index 1f2df5c6..146e9903 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -627,7 +627,7 @@ in rec {
627 wantedBy = [ "multi-user.target" ]; 627 wantedBy = [ "multi-user.target" ];
628 628
629 timerConfig = { 629 timerConfig = {
630 OnActiveSec = "10m"; 630 OnUnitActiveSec = "10m";
631 }; 631 };
632 }; 632 };
633 633