Move mailserver config to mailserver.nix and remove block that is not needed anymore

This commit is contained in:
Daniel Frank 2021-08-12 18:39:56 +02:00
parent 5dcbb4e2dc
commit 10a84a0863
Signed by: tokudan
GPG key ID: 063CCCAD04182D32
2 changed files with 3 additions and 11 deletions

View file

@ -18,10 +18,8 @@
];
# Configuration options for the mailserver
variables = {
mailAdmin = "postmaster@mail.hamburg.freifunk.net";
useSSL = true;
};
# MOVED to mailserver.nix
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;

View file

@ -20,13 +20,7 @@ in
networking.domain = "hamburg.freifunk.net";
services.mymailserver = {
enable = true;
adminAddress = "kontakt@hamburg.freifunk.net";
adminAddress = "postmaster@mail.hamburg.freifunk.net";
mailFQDN = "mail2.hamburg.freifunk.net";
};
users.groups."${config.variables.vmailGroup}" = { gid = config.variables.vmailGID; };
users.users."${config.variables.vmailUser}" = {
uid = config.variables.vmailUID;
group = config.variables.vmailGroup;
hashedPassword = "!";
};
}