Remilia: add SNM and vault-agent

This commit is contained in:
2021-06-07 10:23:28 +05:30
parent 7602cbf16a
commit 2ffcab212c
5 changed files with 69 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
mailserver = {
enable = true;
fqdn = "mail.weirdnatto.in";
domains = [ "weirdnatto.in" ];
loginAccounts = {
"natto@weirdnatto.in" = {
hashedPasswordFile = "/var/secrets/natto@weirdnatto.in.key";
aliases = ["@weirdnatto.in"];
};
};
enablePop3 = false;
enablePop3Ssl = false;
};
}