diff options
Diffstat (limited to 'home-manager/soispha/config/ssh')
-rw-r--r-- | home-manager/soispha/config/ssh/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/home-manager/soispha/config/ssh/default.nix b/home-manager/soispha/config/ssh/default.nix new file mode 100644 index 00000000..7160adac --- /dev/null +++ b/home-manager/soispha/config/ssh/default.nix @@ -0,0 +1,15 @@ +{config, ...}: { + programs.ssh = { + enable = true; + compression = true; + hashKnownHosts = false; + serverAliveInterval = 240; + userKnownHostsFile = "${config.xdg.dataHome}/ssh/known_hosts"; + matchBlocks = { + "codeberg.org" = { + # TODO: Remove this once they fix their ipv6 config + addressFamily = "inet"; + }; + }; + }; +} |