nixos/home/ssh/gunter.nix

16 lines
293 B
Nix
Raw Normal View History

2024-03-04 07:14:08 +00:00
{ pkgs, ... }: {
programs.ssh = {
enable = true;
2024-03-04 08:10:58 +00:00
controlMaster = "auto";
2024-03-04 07:14:08 +00:00
matchBlocks."bmo.uio.no" = {
2024-03-04 08:10:58 +00:00
setEnv = {
# TERM = "xterm-256color";
2024-03-04 07:14:08 +00:00
};
2024-03-04 08:10:58 +00:00
hostname = "bmo.uio.no";
forwardAgent = false;
proxyJump = "torjus@rlogin.uio.no";
2024-03-04 07:14:08 +00:00
};
};
}