diff options
Diffstat (limited to 'ymir.nix')
-rw-r--r-- | ymir.nix | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -13,6 +13,7 @@ let | |||
13 | cert = "certs/${name}.crt"; | 13 | cert = "certs/${name}.crt"; |
14 | }; | 14 | }; |
15 | }; | 15 | }; |
16 | simp_le = pkgs.callPackage ./custom/simp_le.nix {}; | ||
16 | in rec { | 17 | in rec { |
17 | imports = | 18 | imports = |
18 | [ | 19 | [ |
@@ -128,7 +129,8 @@ in rec { | |||
128 | services.fcron = { | 129 | services.fcron = { |
129 | enable = true; | 130 | enable = true; |
130 | systab = '' | 131 | systab = '' |
131 | %weekly * * nix-collect-garbage --delete-older-than '7d' | 132 | %weekly * * nix-collect-garbage --delete-older-than '7d' |
133 | %monthly * * * ${simp_le "/etc/nginx/ssl/git.yggdrasil.li" "git.yggdrasil.li"} | ||
132 | ''; | 134 | ''; |
133 | }; | 135 | }; |
134 | 136 | ||