feat: add builder

This commit is contained in:
Moritz Böhme 2023-08-28 20:09:39 +02:00
parent cf6a46d8ae
commit c629518866
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
5 changed files with 35 additions and 23 deletions

View file

@ -12,16 +12,16 @@ let
hosts-work = [ nixos-work scadspc25 ];
hosts = hosts-personal ++ hosts-work;
personal = [ moritz ] ++ hosts-personal;
all = users ++ hosts;
in
{
"github.age".publicKeys = all;
"nordvpn.age".publicKeys = all;
"spotifyd.age".publicKeys = all;
"ssh-home.age".publicKeys = all;
"uni-vpn.age".publicKeys = all;
"wireguard-preshared-key.age".publicKeys = all;
"wireguard-private-key.age".publicKeys = all;
"ssh-home.age".publicKeys = personal;
"ssh-builder.age".publicKeys = personal;
"uni-vpn.age".publicKeys = personal;
"wireguard-preshared-key.age".publicKeys = personal;
"wireguard-private-key.age".publicKeys = personal;
"webis.age".publicKeys = hosts-personal ++ [ scadspc25 moritz ];
"webis-ssh.age".publicKeys = hosts-personal ++ [ scadspc25 moritz ];
}