blob: cd6447b7d0bf339eea918370fd714f451d219832 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
let
soispha = "age1mshh4ynzhhzhff25tqwkg4j054g3xwrfznh98ycchludj9wjj48qn2uffn";
tiamat = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMD87QQIUXdEv3TaNRrI9clD9VgpsuVLFg2CrNGa5lVB";
apzu = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBivF5b6PyxsR/t+4Qg4IEDXHVXrjmZpslTUNXpvcVbO";
in {
"nheko/conf.tiamat".publicKeys = [soispha tiamat];
"nheko/conf.apzu".publicKeys = [soispha apzu];
# only here to satisfy the nix evaluation
"nheko/conf.isimud".publicKeys = [soispha];
"lf/cd_paths".publicKeys = [soispha tiamat apzu];
"serverphone/ca.key".publicKeys = [soispha tiamat apzu];
"serverphone/server.key".publicKeys = [soispha tiamat apzu];
"taskserver/private.key".publicKeys = [soispha tiamat apzu];
"taskserver/public.cert".publicKeys = [soispha tiamat apzu];
"taskserver/ca.cert".publicKeys = [soispha tiamat apzu];
"taskserver/credentials".publicKeys = [soispha tiamat apzu];
}
|