mirror of
https://git.oat.zone/dark-firepit/dotfiles
synced 2024-11-30 11:41:33 +01:00
10 lines
310 B
Nix
10 lines
310 B
Nix
let
|
|
userKeys = builtins.catAttrs "ssh" (import ../authorizedKeys.nix);
|
|
systemKeys = [
|
|
# /etc/ssh/ssh_host_ed25519_key.pub
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHp0gLv1FiavpvnXinySlZsWrNkAzo4c8GWvN2WRhQqn root@lucent-firepit"
|
|
];
|
|
in {
|
|
"huge-furry-cock.age".publicKeys = userKeys ++ systemKeys;
|
|
}
|