aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--home-manager/config/ssh/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/home-manager/config/ssh/default.nix b/home-manager/config/ssh/default.nix
index 6ce3a7f7..7160adac 100644
--- a/home-manager/config/ssh/default.nix
+++ b/home-manager/config/ssh/default.nix
@@ -5,5 +5,11 @@
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";
+ };
+ };
};
}