From 2a5496118bc2429ad4118591f48612f3f1cab7f7 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sat, 24 May 2025 10:12:39 +0200 Subject: [PATCH] feat: add postfix to web server --- hosts/web-arm/modules/postfix.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hosts/web-arm/modules/postfix.nix diff --git a/hosts/web-arm/modules/postfix.nix b/hosts/web-arm/modules/postfix.nix new file mode 100644 index 0000000..22d450d --- /dev/null +++ b/hosts/web-arm/modules/postfix.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: { + services.postfix = { + enable = true; + domain = "cloonar.com"; + hostname = "web-arm.cloonar.com"; + }; +}