fix: small error that slipped by
Leftover from the refactor T-T
This commit is contained in:
parent
843cfda2ad
commit
aa77690b7a
1 changed files with 5 additions and 4 deletions
|
@ -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}
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue