Revert "🧹 remove user keys"

This reverts commit cb601451d0.
This commit is contained in:
Moritz Böhme 2022-04-20 19:46:18 +02:00
parent a69f60dedb
commit 61dfc58f07
No known key found for this signature in database
GPG key ID: 213820E2795F5CF5
8 changed files with 43 additions and 34 deletions

View file

@ -1,15 +1,19 @@
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 = 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;
"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;
}