summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ymir.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/ymir.nix b/ymir.nix
index 0c1bf437..f3011c46 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -184,4 +184,19 @@ in rec {
184 enable = true; 184 enable = true;
185 basePath = services.gitolite.dataDir + "/repositories"; 185 basePath = services.gitolite.dataDir + "/repositories";
186 }; 186 };
187
188 containers.letsencrypt = {
189 autoStart = true;
190 privateNetwork = true;
191 hostAddress = "192.168.0.1";
192 localAddress = "192.168.0.2";
193 config = {
194 services.fcron = {
195 enable = true;
196 systab = ''
197 # letsencrypt
198 '';
199 };
200 };
201 };
187} 202}