Ssh, disable DefaultConfig to supress warning

This commit is contained in:
Julia Lange 2026-02-18 16:34:20 -08:00
parent 28bda11c68
commit 8fe6e2302c

View file

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