From e9713166f435cfccc5722c4b41287926f2cd0826 Mon Sep 17 00:00:00 2001 From: Ryan Horiguchi Date: Thu, 12 Dec 2024 03:49:04 +0100 Subject: [PATCH] Add jcrk.synology.me to ssh config --- modules/home-manager/ssh.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home-manager/ssh.nix b/modules/home-manager/ssh.nix index 5deb37c1..7bdf7c62 100755 --- a/modules/home-manager/ssh.nix +++ b/modules/home-manager/ssh.nix @@ -29,6 +29,11 @@ in { user = "git"; identityFile = "${home}/.ssh/gitlab_rsa"; }; + + "jcrk.synology.me" = { + user = "xxlpitu"; + port = 10022; + }; } // (let ips = import ../default/wireguard-network/ips.nix; clientIps = lib.filterAttrs (key: _: key != "Ryan-Laptop") ips;