dotfiles/home/ssh/default.nix

17 lines
317 B
Nix
Raw Normal View History

2024-06-03 01:00:53 +02:00
{ inputs, config, pkgs, ... }:
{
programs.ssh = {
enable = true;
matchBlocks = [
{
host = "Mallorea";
hostname = "10.1";
port = 22;
user = "server";
forwardAgent = true;
}
];
};
}