Configure ssh to always use IPv4

This commit is contained in:
Paul-Henri Froidmont 2022-09-07 04:19:25 +02:00
parent ada82a3768
commit e13c7f7b88
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE

View file

@ -78,6 +78,13 @@
init.defaultBranch = "master";
};
};
ssh = {
enable = true;
extraConfig = ''
# Force IPv4 otherwise git will try to use IPv6 which doesn't play well through a VPN
AddressFamily inet
'';
};
rofi = {
enable = true;
theme = "gruvbox-dark";