Always set an admin passwd

This commit is contained in:
niten 2023-07-17 20:13:34 -07:00
parent 3aa884e897
commit 9919537bc6
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ let
tls_type = "none"; tls_type = "none";
smtp_from_address = "noreply@${hostname}"; smtp_from_address = "noreply@${hostname}";
}; };
setup = mkIf (adminPasswd != null) { setup = {
admin_username = "admin"; admin_username = "admin";
admin_password = adminPasswd; admin_password = adminPasswd;
}; };