dotfiles/secrets/secrets.nix

16 lines
538 B
Nix
Raw Normal View History

2021-09-14 13:12:34 +02:00
let
2021-09-29 16:31:34 +02:00
nixos-laptop =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDhtwHDGAZshiQWKkCcPWV9tC83b+bKBgjDcjP/N2CKO";
nixos-desktop =
2021-09-30 21:29:46 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKl8gMhwSf1NsP5gp14xbbyjqQLZzcHLb/XKRMoHdXgI";
2021-09-29 16:31:34 +02:00
hosts = [ nixos-laptop nixos-desktop ];
2022-02-15 16:40:23 +01:00
in {
2022-04-18 18:37:49 +02:00
"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;
2021-09-14 13:12:34 +02:00
}