Add secret support

This commit is contained in:
2022-02-22 00:59:57 +00:00
parent ac31486f6b
commit 8c61cea30d
19 changed files with 71 additions and 11 deletions

View File

@@ -27,7 +27,7 @@ in
ssh = {
authKeys = {
literal = mkOpt' (listOf singleLineStr) [ ] "List of OpenSSH keys to allow";
files = mkOpt' (listOf str) [ ] "List of OpenSSH key files to allow";
files = mkOpt' (listOf path) [ ] "List of OpenSSH key files to allow";
};
};
};
@@ -226,7 +226,7 @@ in
})
(mkIf config.my.isStandalone {
my = {
ssh.authKeys.files = [ lib.my.authorizedKeys ];
ssh.authKeys.files = [ lib.my.sshKeyFiles.me ];
};
fonts.fontconfig.enable = true;