Run mirror-tarballs automatically
Eelco Dolstra committed
Aug 26, 2013 at 11:10 UTC
eb1f4ba4e8556732d23ab3bdc58e337714f26fb9
1 file changed
+5
nixos-org/webserver.nix
+5
@@ -273,6 +273,11 @@ in
273
'';
274
};
275
276
+ systemd.timers.mirror-tarballs =
277
+ { wantedBy = [ "timers.target" ];
278
+ timerConfig.OnCalendar = "05:30";
279
+ };
280
+
281
system.activationScripts.setShmMax =
282
''
283
${pkgs.procps}/sbin/sysctl -q -w kernel.shmmax=$((1 * 1024**3))