13 lines
252 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|