summary refs log tree commit diff
path: root/secrets/secrets.nix
blob: 2b4f75a3f17566cda6902ad5cea06693ca5a93f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
let
  keys = import ./keys.nix;

  inherit (keys) allUsers allSystems;
  inherit (keys.system)
    bismuth
    graphite
    moissanite
    serpentine
    ;
in
{
  "password.age".publicKeys = allSystems ++ allUsers;

  "wg_hexa.conf.age".publicKeys = [
    moissanite
    serpentine
  ] ++ allUsers;
}