about summary refs log tree commit diff
path: root/hosts/tahoe/secrets/secrets.nix
blob: 2d23fda484e249d08ea371d01415da54295b9086 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
let
  fcuny_aptos =
    "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIdlm/qoR/dnMjZhVSTtqFzkgN3Yf9eQ3pgKMiipg+dl";
  tahoe =
    "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEq1IQRvj2jofCHOO6M28w2SRdgtHU06NJvwAwv/b69F";
  all = [ fcuny_aptos tahoe ];
in
{
  "wireguard_privatekey.age".publicKeys = all;

  "acme/credentials.age".publicKeys = all;
  "acme/gcp_service_account.json.age" = {
    publicKeys = all;
    owner = "acme";
  };

  "drone/secrets.age" = {
    publicKeys = all;
    owner = "drone";
  };

  "syncthing/key.age" = {
    publicKeys = all;
    owner = "fcuny";
  };

  "syncthing/cert.age" = {
    publicKeys = all;
    owner = "fcuny";
  };

  "unifi/unifi-poller.age" = {
    publicKeys = all;
    owner = "unpoller-exporter";
  };

  "restic/repo-systems.age".publicKeys = all;
  "rclone/config.ini.age".publicKeys = all;
  "rclone/gcs_service_account.json.age".publicKeys = all;

  "sendsms/config.age".publicKeys = all;
}