blob: 1359e4ab412413126f6d7efdefd08ee1316272d6 (
plain) (
tree)
|
|
{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";
};
};
};
}
|