29 lines
669 B
Nix
29 lines
669 B
Nix
let
|
|
faukah = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGGeejxEV2IZyiXKnh4EqfplfBHAAHrfYo7nXqr2MMlZ" ];
|
|
|
|
hermit = "";
|
|
temperance = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkxWaadx+19Zm4T5ScuNnrBcDvNNke6dUUAdTTJs0wF";
|
|
tower = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBWgQaeT0AVdfDWbOBfjHNW1XVmRbnrJ4SdrDV52LJcZ";
|
|
systems = [
|
|
hermit
|
|
temperance
|
|
tower
|
|
];
|
|
|
|
in
|
|
{
|
|
|
|
"organization_scope.age".publicKeys = faukah ++ [
|
|
hermit
|
|
temperance
|
|
];
|
|
"uni_scope.age".publicKeys = faukah ++ [
|
|
hermit
|
|
temperance
|
|
];
|
|
"rbw_config.age".publicKeys = faukah ++ [
|
|
hermit
|
|
temperance
|
|
];
|
|
"tuwunel_token_file.age".publicKeys = faukah ++ [ tower ];
|
|
}
|