31 lines
646 B
Nix
31 lines
646 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [ sshfs ];
|
|
programs.ssh = {
|
|
enable = true;
|
|
forwardAgent = true;
|
|
serverAliveInterval = 15;
|
|
serverAliveCountMax = 3;
|
|
controlMaster = "auto";
|
|
controlPersist = "10s";
|
|
extraConfig = ''
|
|
AddKeysToAgent=yes
|
|
SetEnv TERM=xterm-256color
|
|
'';
|
|
matchBlocks = {
|
|
"vanguard" = {
|
|
user = "xenia";
|
|
hostname = "192.168.1.166";
|
|
};
|
|
"legion" = {
|
|
user = "xenia";
|
|
hostname = "192.168.1.230";
|
|
};
|
|
"ionos" = {
|
|
user = "root";
|
|
hostname = "77.68.67.133";
|
|
};
|
|
"git*".user = "git";
|
|
};
|
|
};
|
|
}
|