13 lines
439 B
Nix
13 lines
439 B
Nix
let
|
|
jolheiser = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKrPUqk9v7FE7OgMDaOMdlnItiXSDkmS+eU94RzQFiMS nix";
|
|
matcha = "";
|
|
chai = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA7PS9SJ+OVrUku9dPUQZigioy+r3VlFHVntsa/F7AdM root@chai";
|
|
|
|
all = [jolheiser chai];
|
|
in {
|
|
"shared/ssh-config.age".publicKeys = all;
|
|
"shared/ssh-config-work.age".publicKeys = all;
|
|
"shared/nushell.nu.age".publicKeys = all;
|
|
"shared/spotify-pw.age".publicKeys = all;
|
|
}
|