-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsecrets.nix
20 lines (18 loc) · 957 Bytes
/
secrets.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
let
jon = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL3bnlKpGO7eqZFafiLxJVG0TYyleVfuO1C9Q2q0QHJg";
kara = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFhVkbNk0hYPZOu4SlBwD1RXd78PmiD21Yen2j8JgT6Z";
thor = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJqnwVNoWVkTJxUJ1yZh64wKBYaij1IwXUA3PRE3/lIx";
volnir = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIASBzlLkAv8pbvg3/ffDko/K7s5YNWutxclPOLPxNmcu";
users = [ jon ];
in
{
"kara-borgbase-ssh.age".publicKeys = users ++ [ kara ];
"kara-borgbase-passphrase.age".publicKeys = users ++ [ kara ];
"thor-digitalocean.age".publicKeys = users ++ [ thor ];
"thor-borgbase-ssh.age".publicKeys = users ++ [ thor ];
"thor-borgbase-passphrase.age".publicKeys = users ++ [ thor ];
"thor-libations-tskey.age".publicKeys = users ++ [ thor ];
"thor-libations-recipes.age".publicKeys = users ++ [ thor ];
"thor-backup-env.age".publicKeys = users ++ [ thor ];
"volnir-planefinder-config.age".publicKeys = users ++ [ volnir ];
}