NOflake/secrets/secrets.nix

14 lines
599 B
Nix
Raw Normal View History

2024-03-28 08:54:48 -07:00
let
2024-06-01 17:07:25 -07:00
# get these from /etc/ssh
2024-04-01 15:08:38 -07:00
NOcomputer = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPv53GM1uDDOdRxIlHmpf6x2y13yT5bFDNyrgDGLAR1l";
2024-10-14 01:03:54 -07:00
NOlaptop = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJr8RRPHu9MPa7oNfPbCJK3Lh/FL+WRiaZrI+1JVXBNI";
2024-03-30 18:35:45 -05:00
NOmom = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGdPvIo0P00I27i9XQFngsklw/dSyoFs7EgRt7RvkbSq";
2024-04-01 15:08:38 -07:00
systems = [NOcomputer NOlaptop NOmom];
2024-03-28 08:54:48 -07:00
in {
2024-03-28 23:57:47 -05:00
"uwuraid.age".publicKeys = systems;
"syncthing-NOcomputer.age".publicKeys = systems;
"syncthing-NOlaptop.age".publicKeys = systems;
2024-04-04 02:50:30 -07:00
"syncthing-uwuraid.age".publicKeys = systems;
2024-10-13 21:17:25 -07:00
"password-tao.age".publicKeys = systems;
2024-03-28 08:54:48 -07:00
}