fix: small error that slipped by #372

Merged
jalil merged 1 commit from push-wroursrxnzkw into main 2025-03-22 03:08:31 +01:00
Showing only changes of commit aa77690b7a - Show all commits

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