blob: 9f1963cf03d40c864acbb668ed5a0ec0ee02581d (
plain)
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
|
let
keys = import ./keys.nix;
inherit (keys) allUsers allSystems;
inherit (keys.system)
bismuth
graphite
moissanite
serpentine
wolfram
;
in
{
"password.age".publicKeys = allSystems ++ allUsers;
"wireless-secrets.age".publicKeys = [
serpentine
wolfram
] ++ allUsers;
"wg_hexa.conf.age".publicKeys = [
moissanite
serpentine
] ++ allUsers;
}
|