nixos/user/ssh/zedd.nix

16 lines
308 B
Nix
Raw Normal View History

2024-03-18 11:58:34 +00:00
{ pkgs, ... }: {
programs.ssh = {
enable = true;
controlMaster = "auto";
2024-03-21 14:51:35 +00:00
matchBlocks."d dresden dresden.uio.no" = {
2024-03-18 11:58:34 +00:00
setEnv = {
TERM = "xterm-256color";
};
hostname = "dresden.uio.no";
forwardAgent = false;
proxyJump = "mbeno@rlogin.uio.no";
};
};
}