feat(nix/hm/price): configure ssh
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m4s

This commit is contained in:
Price Hiller 2024-05-27 13:39:08 -05:00
parent c690e01544
commit 4cc2f1327f
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

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