17 lines
548 B
Nix
17 lines
548 B
Nix
let
|
|
io =
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKCIrKJk5zWzWEHvLMPMK8T3PyeBjsCsqzxPN+OrXfhA";
|
|
rotterdam =
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK7zAxgU8LNi5/O5XgoOcLKjbNMmO2S7jAuCI9Nr/V4v";
|
|
desktops = [ io rotterdam ];
|
|
|
|
alexandria =
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK95QueW+jp1ZmF299Xr3XkgHJ6dL7aZVsfWxqbOKVKA";
|
|
servers = [ alexandria ];
|
|
|
|
all-hosts = desktops ++ servers;
|
|
in {
|
|
"big-agi-keys.age".publicKeys = all-hosts;
|
|
"cloudflare-creds.age".publicKeys = all-hosts;
|
|
"paperless-pass.age".publicKeys = all-hosts;
|
|
}
|