about summary refs log tree commit diff
path: root/hosts/aptos/secrets/secrets.nix
blob: 425a15ffded5ba376565d082e0131b578ff86bf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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";
  };
}