fix: small error that slipped by

Leftover from the refactor T-T
This commit is contained in:
Jalil David Salamé Messina 2025-03-22 03:06:02 +01:00
parent 843cfda2ad
commit aa77690b7a
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -29,11 +29,12 @@ in
};
};
xdg.configFile.pam-gnupg.text =
lib.mkIf (cfg.unlockKeys != [ ]) ''
xdg.configFile.pam-gnupg = lib.mkIf (cfg.unlockKeys != [ ]) {
text = ''
${config.programs.gpg.homedir}
''
+ (lib.strings.concatLines cfg.gpg.unlockKeys);
${lib.strings.concatLines cfg.gpg.unlockKeys}
'';
};
};
}