diff --git a/hosts/pinwheel/modules/ssh/default.nix b/hosts/pinwheel/modules/ssh/default.nix index 2a77bca..5a90976 100644 --- a/hosts/pinwheel/modules/ssh/default.nix +++ b/hosts/pinwheel/modules/ssh/default.nix @@ -5,6 +5,13 @@ enable = true; matchBlocks = { + "manatee" = { + hostname = "192.168.50.203"; + user = "alex"; + identityFile = "/home/alex/.ssh/alex.pinwheel-manatee"; + port = 1122; + }; + "backwards" = { hostname = "backwards"; user = "alex"; @@ -46,6 +53,19 @@ }; age.secrets = { + "alex.pinwheel-manatee" = { + file = ../../../../secrets/pinwheel/alex.pinwheel-manatee.age; + path = "/home/alex/.ssh/alex.pinwheel-manatee"; + owner = "alex"; + group = "users"; + }; + "alex.pinwheel-manatee.pub" = { + file = ../../../../secrets/pinwheel/alex.pinwheel-manatee.pub.age; + path = "/home/alex/.ssh/alex.pinwheel-manatee.pub"; + owner = "alex"; + group = "users"; + }; + "alex.pinwheel-backwards" = { file = ../../../../secrets/pinwheel/alex.pinwheel-backwards.age; path = "/home/alex/.ssh/alex.pinwheel-backwards"; diff --git a/secrets/pinwheel/alex.pinwheel-manatee.age b/secrets/pinwheel/alex.pinwheel-manatee.age new file mode 100644 index 0000000..85d6fdf Binary files /dev/null and b/secrets/pinwheel/alex.pinwheel-manatee.age differ diff --git a/secrets/pinwheel/alex.pinwheel-manatee.pub.age b/secrets/pinwheel/alex.pinwheel-manatee.pub.age new file mode 100644 index 0000000..70f6d20 --- /dev/null +++ b/secrets/pinwheel/alex.pinwheel-manatee.pub.age @@ -0,0 +1,9 @@ +age-encryption.org/v1 +-> ssh-ed25519 vxPbZg eRWhz6fZKuP5v5E16uZg6si0/vlp3FdzcWud0OfAV38 +9ipUEQuy7IZZRi5RtoiH5/f093YCicJ/3VpH0TC7lh4 +-> ssh-ed25519 wkRvNA 938EBkoteypEXGVYII8KP1sm4fpN7MmasqN+lxW70DQ +qt5DS5u1oCPvlOwO0DsoZp0OdEgZ/hRIJkD77c19Kts +-> ssh-ed25519 +oNaHQ LJSsvOsWwHm+JygGKZ31+IBLKPNadx1OvIcA4Zm34G8 +AtSUR73XCikmAovR8YidLDy7WqZhsvjozzZM82qLsQA +--- wDbiqcaXCRtSYx4qTqxFe8xn56J5ZkdtPrMs5Ba+4No +‹dŸíð¿RM“E¡ìþÎ4¬\û`ŸûÎÄXì0€ú¤=‡¾’lå€.À3Ò¡Îd&`‡øC«Ö'×Ï¿½'¿~Ï+£˜Ü½0ÁŠ`Gaù©b‘ÎR,d›:¤èQ|Ñ”…ãôùæÅ}BÏIߪ#‹c™©L§Ë%ö¿eD¾Rpú™Û˜6 \ No newline at end of file diff --git a/secrets/secrets.nix b/secrets/secrets.nix index 69721ea..cd1a3b2 100644 --- a/secrets/secrets.nix +++ b/secrets/secrets.nix @@ -9,6 +9,8 @@ in { "pinwheel/syncthing-cert.age".publicKeys = [ pinwheel alex ]; "pinwheel/syncthing-key.age".publicKeys = [ pinwheel alex ]; "pinwheel/tailscale-preferred-exit-node.age".publicKeys = [ pinwheel alex ]; + "pinwheel/alex.pinwheel-manatee.age".publicKeys = [ pinwheel alex ]; + "pinwheel/alex.pinwheel-manatee.pub.age".publicKeys = [ pinwheel manatee alex ]; "pinwheel/alex.pinwheel-backwards.age".publicKeys = [ pinwheel alex ]; "pinwheel/alex.pinwheel-backwards.pub.age".publicKeys = [ pinwheel backwards alex ]; "pinwheel/alex.pinwheel-tadpole.age".publicKeys = [ pinwheel alex ];