From 623ed773c8666323f6986c6eb1340c463cc466cc Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Fri, 27 Dec 2024 04:53:44 -0800 Subject: [PATCH] ssh: virtmsi support --- home/modules/ssh.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home/modules/ssh.nix b/home/modules/ssh.nix index f8899c6..3c52a2e 100644 --- a/home/modules/ssh.nix +++ b/home/modules/ssh.nix @@ -22,7 +22,7 @@ in programs.ssh = { enable = true; includes = [ "conf.d/*" ]; - matchBlocks = { + matchBlocks = rec { "git.zynh.me" = { hostname = "git.zynh.me"; user = "git"; @@ -53,6 +53,10 @@ in caveserver = { identityFile = keyPathIfSops "caveserver"; }; + virtmsi = { + hostname = "192.168.122.76"; + identityFile = keyPathIfSops "snowhawk"; + }; }; };