From eab39f9dda288581d393739f39353bbb10a7806c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 2 Nov 2013 20:41:54 +0100 Subject: [PATCH] venus.nix: Fix broken startAt option --- nixos/modules/programs/venus.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/programs/venus.nix b/nixos/modules/programs/venus.nix index 2b3bfbc6c18..9a077d40492 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; }; };