matrix-synapse: add missing xkcdpass to password generator #1608

Merged
clan-bot merged 1 commits from matrix into main 2024-06-11 13:44:08 +00:00

View File

@ -163,10 +163,7 @@ in
name: user:
lib.nameValuePair "matrix-password-${user.name}" {
secret."matrix-password-${user.name}" = { };
generator.path = with pkgs; [
coreutils
pwgen
];
generator.path = with pkgs; [ xkcdpass ];
generator.script = ''
xkcdpass -n 4 -d - > "$secrets"/${lib.escapeShellArg "matrix-password-${user.name}"}
'';