diff options
Diffstat (limited to 'hosts/cloud/bkk')
-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; + }; +} |