nixos/home/ssh/gunter.nix
2024-03-04 08:14:08 +01:00

13 lines
252 B
Nix

{ pkgs, ... }: {
programs.ssh = {
enable = true;
matchBlocks."bmo.uio.no" = {
hostname = "bmo.uio.no";
extraOptions = {
ControlMaster = "auto";
ControlPath = "$XDG_RUNTIME_DIR/ssh/%r@%h:%p";
};
};
};
}