about summary refs log tree commit diff
path: root/nixos/modules/programs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-11-02 20:41:54 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-11-02 20:43:06 +0100
commiteab39f9dda288581d393739f39353bbb10a7806c (patch)
treeb84c78077ee04e6ef17c4793798e7905e0b6ba0e /nixos/modules/programs
parentb15bbdfa17b364f13fae408876941ec419c6597f (diff)
downloadnixlib-eab39f9dda288581d393739f39353bbb10a7806c.tar
nixlib-eab39f9dda288581d393739f39353bbb10a7806c.tar.gz
nixlib-eab39f9dda288581d393739f39353bbb10a7806c.tar.bz2
nixlib-eab39f9dda288581d393739f39353bbb10a7806c.tar.lz
nixlib-eab39f9dda288581d393739f39353bbb10a7806c.tar.xz
nixlib-eab39f9dda288581d393739f39353bbb10a7806c.tar.zst
nixlib-eab39f9dda288581d393739f39353bbb10a7806c.zip
venus.nix: Fix broken startAt option
Diffstat (limited to 'nixos/modules/programs')
-rw-r--r--nixos/modules/programs/venus.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/programs/venus.nix b/nixos/modules/programs/venus.nix
index 2b3bfbc6c188..9a077d404920 100644
--- a/nixos/modules/programs/venus.nix
+++ b/nixos/modules/programs/venus.nix
@@ -40,7 +40,7 @@ in
       };
 
       dates = mkOption {
-        default = "*:0,15,30,45";
+        default = "*:0/15";
         type = types.string;
         description = ''
           Specification (in the format described by
@@ -167,7 +167,7 @@ in
         serviceConfig.User = "${cfg.user}";
         serviceConfig.Group = "${cfg.group}";
         environment.OPENSSL_X509_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt";
-        startOn = cfg.dates;
+        startAt = cfg.dates;
       };
 
   };