diff --git a/systems/x86_64-linux/sgx/mail.nix b/systems/x86_64-linux/sgx/mail.nix index aebd3a1..c8b67db 100644 --- a/systems/x86_64-linux/sgx/mail.nix +++ b/systems/x86_64-linux/sgx/mail.nix @@ -1,8 +1,10 @@ -{ pkgs, ... }: +{ pkgs, config, ... }: { environment.systemPackages = with pkgs; [ mailutils mutt ]; services.postfix.enable = true; + services.postfix.rootAlias = config.metacfg.user.name; + services.postfix.extraAliases = "admin: root"; }