add randomwp

This commit is contained in:
2024-03-04 09:10:58 +01:00
parent 705c9ba011
commit eba67abc2a
4 changed files with 42 additions and 6 deletions

View File

@@ -1,12 +1,15 @@
{ pkgs, ... }: {
programs.ssh = {
enable = true;
controlMaster = "auto";
matchBlocks."bmo.uio.no" = {
hostname = "bmo.uio.no";
extraOptions = {
ControlMaster = "auto";
ControlPath = "$XDG_RUNTIME_DIR/ssh/%r@%h:%p";
setEnv = {
# TERM = "xterm-256color";
};
hostname = "bmo.uio.no";
forwardAgent = false;
proxyJump = "torjus@rlogin.uio.no";
};
};
}