Add ssh config
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
./zsh
|
||||
./packages
|
||||
./hyprland
|
||||
./i3
|
||||
./ssh
|
||||
];
|
||||
firefox.enable = true;
|
||||
tmux.enable = true;
|
||||
|
@@ -23,9 +23,9 @@
|
||||
"$term" = "kitty";
|
||||
|
||||
monitor = [
|
||||
"DP-3,1920x1080@60,2560x0,1" # top
|
||||
"DP-6,1920x1080@60,2560x0,1" # top T2B04424SL000
|
||||
"DP-8,2560x1440@75,0x1080,1" # left
|
||||
"DP-2,2560x1440@120,2560x1080,1" # main
|
||||
"DP-5,2560x1440@120,2560x1080,1" # main #ASPVEKfgZ8Dd
|
||||
"DP-7,2560x1440@75,5120x1080,1" # right
|
||||
];
|
||||
input = {
|
||||
|
1
home/ssh/default.nix
Normal file
1
home/ssh/default.nix
Normal file
@@ -0,0 +1 @@
|
||||
{ imports = [ ./gunter.nix ]; }
|
12
home/ssh/gunter.nix
Normal file
12
home/ssh/gunter.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs, ... }: {
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
matchBlocks."bmo.uio.no" = {
|
||||
hostname = "bmo.uio.no";
|
||||
extraOptions = {
|
||||
ControlMaster = "auto";
|
||||
ControlPath = "$XDG_RUNTIME_DIR/ssh/%r@%h:%p";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user