# nixos-config - My current NixOS configuration # # Copyright (C) 2025 Benedikt Peetz # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of my nixos-config. # # You should have received a copy of the License along with this program. # If not, see . {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"; }; }; }; }