nixos-config/user/ssh.nix
2026-06-14 21:54:15 -03:00

21 lines
432 B
Nix

{
config = {
programs.ssh = {
enable = true;
enableDefaultConfig = false;
settings = {
monolith = {
User = "lelgenio";
HostName = "monolith.lelgenio.com";
Port = 9022;
};
phantom = {
User = "root";
HostName = "phantom.lelgenio.com";
Port = 9022;
};
};
includes = [ "~/Wopus/.ssh.config" ];
};
};
}