2024-03-09 17:18:36 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs.ssh = {
|
|
|
|
enable = true;
|
|
|
|
matchBlocks = {
|
|
|
|
archserver = {
|
|
|
|
hostname = "192.168.1.20";
|
|
|
|
user = "xeovalyte";
|
|
|
|
identityFile = "~/.ssh/archserver";
|
|
|
|
};
|
|
|
|
|
2024-03-12 21:32:26 +01:00
|
|
|
"gitea.xeovalyte.dev" = {
|
2024-03-09 17:18:36 +01:00
|
|
|
hostname = "gitea.xeovalyte.dev";
|
|
|
|
port = 2222;
|
|
|
|
user = "git";
|
|
|
|
identityFile = "~/.ssh/gitea";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|