Add ssh config

Signed-off-by: Noah Knegt <git@noahknegt.com>
This commit is contained in:
2025-07-03 21:55:12 +02:00
parent f09c55cd92
commit 04733b74ab
2 changed files with 16 additions and 0 deletions

View File

@@ -19,6 +19,7 @@
./dotfiles
./git
./IDEs
./ssh
./tools
./zsh
];

View File

@@ -0,0 +1,15 @@
{ pkgs, inputs, ... }:
{
programs.ssh = {
enable = true;
matchBlocks = {
"zeus" = {
hostname = "vps.noahknegt.com";
user = "noahk";
port = 22;
};
};
};
}