diff options
author | EuAndreh <eu@euandre.org> | 2023-03-13 09:56:52 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-13 09:56:52 -0300 |
commit | 147181f0acec60fc73a54990d5692a5354002b14 (patch) | |
tree | f259892959b15094a5ec03318d439ad99d111538 | |
parent | etc/ssh/config.tmpl: Add User entry for pilotis.net (diff) | |
download | dotfiles-147181f0acec60fc73a54990d5692a5354002b14.tar.gz dotfiles-147181f0acec60fc73a54990d5692a5354002b14.tar.xz |
etc/nix/configuration.nix: Configure postfix to redirect local emails to euandre.org
-rw-r--r-- | etc/nix/configuration.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/etc/nix/configuration.nix b/etc/nix/configuration.nix index 5e238bf..05970ad 100644 --- a/etc/nix/configuration.nix +++ b/etc/nix/configuration.nix @@ -73,11 +73,18 @@ services = { upower.enable = true; - postfix.enable = true; fprintd.enable = true; blueman.enable = true; pcscd.enable = true; + postfix = { + enable = true; + extraAliases = '' + root: andreh + andreh: eu@euandre.org + ''; + }; + openssh = { enable = true; settings = { |