diff options
Diffstat (limited to 'modules/home/conf/ssh/default.nix')
-rw-r--r-- | modules/home/conf/ssh/default.nix | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/home/conf/ssh/default.nix b/modules/home/conf/ssh/default.nix deleted file mode 100644 index de9b0d90..00000000 --- a/modules/home/conf/ssh/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{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"; - }; - }; - }; -} |