diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/omega-relay/default.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/omega-relay/default.nix b/hosts/omega-relay/default.nix index 727b7b0..32ba860 100644 --- a/hosts/omega-relay/default.nix +++ b/hosts/omega-relay/default.nix @@ -43,6 +43,13 @@ isVM = config.addons.virtualisation.isTestVM; in { + test_endpoint = { + enable = true; + domain = if isVM then "omega-relay.local" else "omega-relay.wilkuu.xyz"; + doACME = !isVM; + port = 8080; + }; + stalwart = { enable = true; domain = if isVM then "mail.omega-relay.local" else "mail.wilkuu.xyz"; @@ -127,6 +134,10 @@ }; }; + virtualisation = { + docker.enable = true; + }; + # TODO: Make a nginx module security.acme = lib.mkIf (!config.addons.virtualisation.isTestVM) { acceptTerms = true; |
