1
0
forked from clan/clan-core

Merge pull request 'matrix-synapse: add missing xkcdpass to password generator' (#1608) from matrix into main

This commit is contained in:
clan-bot 2024-06-11 13:44:08 +00:00
commit be868ee107

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}"}
'';