19 lines
607 B
Nix
19 lines
607 B
Nix
|
let
|
||
|
grape = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFJwT2EBbcTCeB9KJrAlsE15EwyldWCiGodjSLeJu6Cz grape@strix";
|
||
|
users = [ grape ];
|
||
|
|
||
|
carbon = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGgB3WAu0WWaRog795SwgM2vUXXB1/oosIhXRZ9kPZ+P";
|
||
|
lime = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPiO7+7mFkXQ5jYNSmGErC+C6js0CvSWw0Pe9NAtuL1W";
|
||
|
systems = [ carbon ];
|
||
|
in
|
||
|
{
|
||
|
"synapse.age".publicKeys = [ grape carbon ];
|
||
|
"anonymousoverflow.age".publicKeys = [ grape carbon ];
|
||
|
"forgejo-runner.age".publicKeys = [ grape carbon ];
|
||
|
|
||
|
"porkbun.age".publicKeys = [ grape lime ];
|
||
|
"porkbun-user.age".publicKeys = [ grape lime ];
|
||
|
|
||
|
|
||
|
}
|