diff options
author | polwex <polwex@sortug.com> | 2024-09-07 20:15:35 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2024-09-07 20:15:35 +0700 |
commit | c72570a6b613914def5bc0bb6d66326308f8bbcb (patch) | |
tree | 9ef836691d9fd0ca0d878cbc9827166a6890ca90 /hosts/cloud | |
parent | 0a8c8dd3c67a018d9ae6ff87777a3823f0fb40cd (diff) |
m
Diffstat (limited to 'hosts/cloud')
-rw-r--r-- | hosts/cloud/bkk/configuration.nix | 1 | ||||
-rw-r--r-- | hosts/cloud/bkk/jmap.nix | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/hosts/cloud/bkk/configuration.nix b/hosts/cloud/bkk/configuration.nix index 5a37599..9ddc4ad 100644 --- a/hosts/cloud/bkk/configuration.nix +++ b/hosts/cloud/bkk/configuration.nix @@ -7,6 +7,7 @@ imports = [ ./hardware-configuration.nix ./nginx.nix + ./jmap.nix ../../users.nix ../../base.nix ../../server.nix diff --git a/hosts/cloud/bkk/jmap.nix b/hosts/cloud/bkk/jmap.nix new file mode 100644 index 0000000..7663926 --- /dev/null +++ b/hosts/cloud/bkk/jmap.nix @@ -0,0 +1,11 @@ +{ + config, + pkgs, + ... +}: let +domain = "yago.onl"; +in { + services.stalwart-mail = { + enable = true; + }; +} |