nixos-config/user/ssh.nix

21 lines
400 B
Nix
Raw Normal View History

{
2023-10-26 17:34:27 -03:00
config = {
2024-10-25 16:43:53 -03:00
programs.ssh = {
enable = true;
matchBlocks = {
monolith = {
user = "lelgenio";
hostname = "monolith.lelgenio.com";
port = 9022;
};
phantom = {
user = "root";
hostname = "phantom.lelgenio.com";
port = 9022;
};
2023-10-26 17:34:27 -03:00
};
2024-10-25 16:43:53 -03:00
includes = [ "~/Wopus/.ssh.config" ];
2023-10-26 17:34:27 -03:00
};
};
}