diff options
author | Azat Bahawi <azat@bahawi.net> | 2022-08-15 20:15:46 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-08-15 20:15:46 +0300 |
commit | 11b1422236004d1414b895f2b993ec6b651a5d19 (patch) | |
tree | 399881ae9fa29bec0b6daf2c2653f763d8612cf5 /configurations/manwe/mailserver.nix | |
parent | 2022-08-14 (diff) |
2022-08-15
Diffstat (limited to '')
-rw-r--r-- | configurations/manwe/mailserver.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configurations/manwe/mailserver.nix b/configurations/manwe/mailserver.nix index 60a917b..83713f9 100644 --- a/configurations/manwe/mailserver.nix +++ b/configurations/manwe/mailserver.nix @@ -55,7 +55,7 @@ with lib; { loginAccounts = with my.domain; { "azahi@${shire}" = { - hashedPassword = "[REDACTED]"; + hashedPassword = "@HASHED_PASSWORD@"; aliases = [ "@${azahi}" "@${rohan}" @@ -67,16 +67,16 @@ with lib; { ]; }; "samwise@${shire}" = { - hashedPassword = "[REDACTED]"; + hashedPassword = "@HASHED_PASSWORD@"; aliases = ["chad@${shire}"]; quota = "1G"; }; "pippin@${shire}" = { - hashedPassword = "[REDACTED]"; + hashedPassword = "@HASHED_PASSWORD@"; quota = "1G"; }; "meriadoc@${shire}" = { - hashedPassword = "[REDACTED]"; + hashedPassword = "@HASHED_PASSWORD@"; quota = "1G"; }; }; |