about summary refs log tree commit diff
path: root/hosts/aptos/secrets/secrets.nix
blob: 674af9b30e612b0ddcbe6bc45979e99dfcaee480 (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
24
25
26
27
28
29
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";
  };

  "gcloud/world-nix.age" = {
    publicKeys = [ fcuny aptos ];
    owner = "fcuny";
  };
}