home-manager/private/ssh.nix

19 lines
263 B
Nix

{ ... }:
{
programs = {
ssh = {
enable = true;
matchBlocks = {
tc-0x = {
host = "tc-*";
user = "root";
};
ed-0x = {
host = "ed-*";
user = "root";
};
};
};
};
}