diff --git a/hosts/pinwheel/configuration.nix b/hosts/pinwheel/configuration.nix index d551f67..b8e4795 100644 --- a/hosts/pinwheel/configuration.nix +++ b/hosts/pinwheel/configuration.nix @@ -195,7 +195,10 @@ ''; age = { - identityPaths = [ "/etc/ssh/pinwheel" ]; + identityPaths = [ + "/etc/ssh/pinwheel" + "/home/alex/.ssh/alex.pinwheel" + ]; secrets = { "syncthing-cert".file = ../../secrets/pinwheel/syncthing-cert.age; diff --git a/secrets/pinwheel/syncthing-cert.age b/secrets/pinwheel/syncthing-cert.age index 43b51b2..f30e96d 100644 Binary files a/secrets/pinwheel/syncthing-cert.age and b/secrets/pinwheel/syncthing-cert.age differ diff --git a/secrets/pinwheel/syncthing-key.age b/secrets/pinwheel/syncthing-key.age index 4718337..a72aa23 100644 Binary files a/secrets/pinwheel/syncthing-key.age and b/secrets/pinwheel/syncthing-key.age differ diff --git a/secrets/secrets.nix b/secrets/secrets.nix index bcbf0cc..999b1d2 100644 --- a/secrets/secrets.nix +++ b/secrets/secrets.nix @@ -1,6 +1,6 @@ let pinwheel = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMoI7Q4zT2AGXU+i8fLmzcNLdfMkEnfHYh4PmaEmo2QW root@pinwheel"; - alex = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILTw7VCV4z5At0e+oCG+3I3tSyhmLJgQkWlhaYJVlyS8 alex.bennu2@github.com"; + alex = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINjSFvlbdy5D59UaVWjRMyBndiAT2MtCeT+6GuemkuYe alex.pinwheel"; in { "pinwheel/syncthing-cert.age".publicKeys = [ pinwheel alex ]; "pinwheel/syncthing-key.age".publicKeys = [ pinwheel alex ];