add new host key

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-04-15 18:56:08 +03:00
parent 4097c07eca
commit e5ce669b0a
5 changed files with 24 additions and 20 deletions

View File

@ -15,10 +15,11 @@ in {
isNormalUser = true;
extraGroups = ["wheel" "video" "libvirtd" "dialout"];
shell = pkgs.fish;
openssh.authorizedKeys.keyFiles = map (f: "${mysecrets}/ssh/user/${f}") [
"id_dunamis_ed25519.pub"
"id_eldrid_ed25519.pub"
"id_sarien_ed25519.pub"
openssh.authorizedKeys.keyFiles = map (f: "${mysecrets}/ssh/user/id_${f}_ed25519.pub") [
"dunamis"
"eldrid"
"sarien"
"legion"
];
};
};