blob: 05e9662968f24257a58f52384b4b838ff12396d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
let
fcuny =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIdlm/qoR/dnMjZhVSTtqFzkgN3Yf9eQ3pgKMiipg+dl";
aptos =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOTcPGaiL+/Mwl8JzLHrBwas7QvWPjix4lnaAA1tw+5t";
in {
"wireguard_privatekey.age".publicKeys = [ fcuny aptos ];
"syncthing/key.age" = {
publicKeys = [ fcuny aptos ];
owner = "fcuny";
};
"syncthing/cert.age" = {
publicKeys = [ fcuny aptos ];
owner = "fcuny";
};
"restic/repo-users.age" = {
publicKeys = [ fcuny aptos ];
owner = "fcuny";
};
}
|