fix(auth): translate key list

This commit is contained in:
514fpv 2024-03-30 14:09:52 +08:00
parent 5b6a1b9ddf
commit 315a76c2be
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -7,6 +7,8 @@
builtins.readDir
(lib.filterAttrs (n: ty: ty == "regular"))
(lib.mapAttrsToList (n: _: builtins.readFile ./pub/${n}))
(foldr (payload: keys: (splitString "\n" payload) ++ keys) [ ])
(foldr (candidate: keys: keys ++ (if candidate == "" then [ ] else [ candidate ])) [ ])
];
in {
options.global.auth = {
@ -15,7 +17,7 @@ in {
enable = mkEnableOption "openssh server";
password = mkEnableOption "password authentication";
publicKeys = mkOption {
type = with types; listOf str;
type = with types; listOf singleLineStr;
default = pub;
description = "list of trusted openssh keys";
};