diff options
Diffstat (limited to 'hm/soispha/conf/ssh')
-rw-r--r-- | hm/soispha/conf/ssh/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hm/soispha/conf/ssh/default.nix b/hm/soispha/conf/ssh/default.nix new file mode 100644 index 00000000..1359e4ab --- /dev/null +++ b/hm/soispha/conf/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"; + }; + }; + }; +} |