diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-03-30 20:53:12 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-03-30 20:53:12 -0500 |
| commit | 369e8b83f082f3ac2d3f6a040c0efafe981642a7 (patch) | |
| tree | 1871caa3a3d456f6455841e20a1352d403d729a6 /hosts/poweredge/notification-mailer.nix | |
| parent | 07cc1920136ce61980c80c6bde3c267fcbc6218f (diff) | |
| download | nixos-369e8b83f082f3ac2d3f6a040c0efafe981642a7.tar.xz nixos-369e8b83f082f3ac2d3f6a040c0efafe981642a7.zip | |
poweredge config fix and secrets
Diffstat (limited to 'hosts/poweredge/notification-mailer.nix')
| -rw-r--r-- | hosts/poweredge/notification-mailer.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hosts/poweredge/notification-mailer.nix b/hosts/poweredge/notification-mailer.nix index 25e2e2b..d8fddc7 100644 --- a/hosts/poweredge/notification-mailer.nix +++ b/hosts/poweredge/notification-mailer.nix @@ -1,8 +1,8 @@ { config, ... }: let - serverEmail = "poweredge@tjkeller.xyz"; + serverEmail = "server-notifications@tjkeller.xyz"; in { # Mailer password secret for mail application password - sops.secrets.mailerPassword.sopsFile = ./resources/secrets/mailer.yaml; + sops.secrets.mailerPassword.sopsFile = ./resources/secrets/mailer-pass.yaml; # Enable mta for system event notifications services.mail._mailer = { @@ -13,7 +13,7 @@ in { passwordFile = config.sops.secrets.mailerPassword.path; }; recipient = serverEmail; - } + }; # Enable zed mailer module services.zfs._zedMailer.enable = true; |
