From a863bc78c8996af0506a42acb84d7746f3a5c724 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sun, 21 Jul 2024 10:06:24 +0200 Subject: [PATCH] pinwheel: Add `ssh` secrets for `tadpole` --- hosts/pinwheel/modules/ssh/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/hosts/pinwheel/modules/ssh/default.nix b/hosts/pinwheel/modules/ssh/default.nix index e8b31d4..229e685 100644 --- a/hosts/pinwheel/modules/ssh/default.nix +++ b/hosts/pinwheel/modules/ssh/default.nix @@ -25,6 +25,13 @@ identityFile = "/home/alex/.ssh/alex.pinwheel-andromeda"; }; + "tadpole" = { + hostname = "65.21.106.222"; + user = "alex"; + identityFile = "/home/alex/.ssh/alex.pinwheel-tadpole"; + port = 1122; + }; + "github.com" = { hostname = "github.com"; identityFile = "/home/alex/.ssh/alex.pinwheel-github.com"; @@ -92,6 +99,19 @@ owner = "alex"; group = "users"; }; + + "alex.pinwheel-tadpole" = { + file = ../../../../secrets/pinwheel/alex.pinwheel-tadpole.age; + path = "/home/alex/.ssh/alex.pinwheel-tadpole"; + owner = "alex"; + group = "users"; + }; + "alex.pinwheel-tadpole.pub" = { + file = ../../../../secrets/pinwheel/alex.pinwheel-tadpole.pub.age; + path = "/home/alex/.ssh/alex.pinwheel-tadpole.pub"; + owner = "alex"; + group = "users"; + }; }; services.openssh = {