deploy: test new keys
Some checks failed
/ check (push) Successful in 42s
/ deploy (push) Failing after 3s

This commit is contained in:
Jermeiah S 2025-06-20 14:17:12 -04:00
parent 3527e5d3ed
commit 8b992b53d8
No known key found for this signature in database
2 changed files with 4 additions and 3 deletions

View file

@ -31,9 +31,9 @@ in
{
users.users = {
root.openssh.authorizedKeys.keys = lib.flatten (
lib.mapAttrsToList (_: v: v.openssh.authorizedKeys.keys) u
);
root.openssh.authorizedKeys.keys =
lib.flatten (lib.mapAttrsToList (_: v: v.openssh.authorizedKeys.keys) u)
++ [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINwJF0BNEY0CgA5kkZrzpv+sahs40anFO+JKTfFJIgqU" ];
} // u;
}