ssh: virtmsi support

This commit is contained in:
Zynh Ludwig 2024-12-27 04:53:44 -08:00
parent cede974225
commit 623ed773c8

View file

@ -22,7 +22,7 @@ in
programs.ssh = { programs.ssh = {
enable = true; enable = true;
includes = [ "conf.d/*" ]; includes = [ "conf.d/*" ];
matchBlocks = { matchBlocks = rec {
"git.zynh.me" = { "git.zynh.me" = {
hostname = "git.zynh.me"; hostname = "git.zynh.me";
user = "git"; user = "git";
@ -53,6 +53,10 @@ in
caveserver = { caveserver = {
identityFile = keyPathIfSops "caveserver"; identityFile = keyPathIfSops "caveserver";
}; };
virtmsi = {
hostname = "192.168.122.76";
identityFile = keyPathIfSops "snowhawk";
};
}; };
}; };