Ssh, disable DefaultConfig to supress warning

This commit is contained in:
Julia Lange 2026-02-18 16:34:20 -08:00
parent 449cd8bf50
commit e5649b9c80
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto

View file

@ -6,7 +6,10 @@
}; };
config = lib.mkIf config.ssh.enable { config = lib.mkIf config.ssh.enable {
programs.ssh.enable = true; programs.ssh = {
enable = true;
enableDefaultConfig = false;
};
home.packages = with pkgs; [ home.packages = with pkgs; [
sshfs # SSH File system sshfs # SSH File system
]; ];