dots/users/price/conf/ssh/default.nix
Price Hiller 4cc2f1327f
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m4s
feat(nix/hm/price): configure ssh
2024-05-27 13:39:08 -05:00

15 lines
260 B
Nix

{ ... }:
{
programs.ssh = {
enable = true;
matchBlocks = rec {
luna = {
hostname = "luna.hosts.orion-technologies.io";
user = "price";
port = 2200;
};
"luna.hosts.orion-technologies.io" = luna;
};
};
}