From 773ba5e5ea810f104127b7ca28e541875f763599 Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Mon, 20 Mar 2023 18:39:29 +0300 Subject: 2023-03-20 --- modules/nixos/nullmailer.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 modules/nixos/nullmailer.nix (limited to 'modules/nixos/nullmailer.nix') diff --git a/modules/nixos/nullmailer.nix b/modules/nixos/nullmailer.nix new file mode 100644 index 0000000..193b109 --- /dev/null +++ b/modules/nixos/nullmailer.nix @@ -0,0 +1,28 @@ +{ + config, + inputs, + lib, + ... +}: +with lib; let + cfg = config.nixfiles.modules.nullmailer; +in { + options.nixfiles.modules.nullmailer.enable = mkEnableOption "Nullmailer"; + + config = mkIf cfg.enable { + # No use in enabling it other than having a retry queue. + # ark.directories = ["/var/spool/nullmailer"]; + + secrets.nullmailer-remotes = with config.services.nullmailer; { + file = "${inputs.self}/secrets/nullmailer-remotes"; + owner = user; + inherit group; + }; + + services.nullmailer = { + enable = true; + remotesFile = config.secrets.nullmailer-remotes.path; + config.me = config.networking.domain; + }; + }; +} -- cgit v1.2.3