9 lines
284 B
Nix
9 lines
284 B
Nix
let
|
|
# Founder SSH public key (recipient). Safe to commit.
|
|
founder = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJCBTSEEcBOhOkf3WF1e8xmblAZHvgTibFsqck2GY8D/";
|
|
in
|
|
{
|
|
"secrets/cloudflare-api-token.age".publicKeys = [ founder ];
|
|
"secrets/codeberg-token.age".publicKeys = [ founder ];
|
|
}
|
|
|