🧹 remove user keys

This commit is contained in:
Moritz Böhme 2022-04-18 18:37:49 +02:00
parent 4490d86f2c
commit cb601451d0
No known key found for this signature in database
GPG key ID: 213820E2795F5CF5
8 changed files with 34 additions and 43 deletions

View file

@ -1,19 +1,15 @@
let
moritz =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGoAqa2m7hIzZ2LS96Z+RCIlRvhBM/j7h27tMBCwMT+a";
users = [ moritz ];
nixos-laptop =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDhtwHDGAZshiQWKkCcPWV9tC83b+bKBgjDcjP/N2CKO";
nixos-desktop =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKl8gMhwSf1NsP5gp14xbbyjqQLZzcHLb/XKRMoHdXgI";
hosts = [ nixos-laptop nixos-desktop ];
in {
"nordvpn.age".publicKeys = users ++ hosts;
"spotifyd.age".publicKeys = users ++ hosts;
"email-desktop.age".publicKeys = users ++ hosts;
"email-laptop.age".publicKeys = users ++ hosts;
"home-vpn.age".publicKeys = users ++ hosts;
"home-vpn-password.age".publicKeys = users ++ hosts;
"github.age".publicKeys = users ++ hosts;
"nordvpn.age".publicKeys = hosts;
"spotifyd.age".publicKeys = hosts;
"email-desktop.age".publicKeys = hosts;
"email-laptop.age".publicKeys = hosts;
"home-vpn.age".publicKeys = hosts;
"home-vpn-password.age".publicKeys = hosts;
"github.age".publicKeys = hosts;
}