setup zerotierone and sshconfig

This commit is contained in:
Your Name
2024-04-10 17:16:42 -04:00
committed by Richie Cahill
parent 918baa6d58
commit 237abb8c51
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{
config,
pkgs,
lib,
...
}:
{
programs.ssh = {
enable = true;
matchBlocks = {
jeeves = {
hostname = "192.168.90.40";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 629;
};
jeevesjr = {
hostname = "192.168.90.35";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 352;
};
};
};
}