diff options
| author | triethyl <triethylammonium@pm.me> | 2025-10-19 19:51:05 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-10-19 19:51:05 -0400 |
| commit | 1b73d4698726f1769654f7602aba845e296346b0 (patch) | |
| tree | d486c0f0d9496c3203e57e3b1fe191a78baa69b4 /home-manager/features | |
| parent | 3ce9fe8791a81951a05cb6465811e153b10acbf6 (diff) | |
features: disabled ssh defaults
Diffstat (limited to 'home-manager/features')
| -rw-r--r-- | home-manager/features/cli/utils/ssh.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/home-manager/features/cli/utils/ssh.nix b/home-manager/features/cli/utils/ssh.nix index 5579cc0..3b7cc03 100644 --- a/home-manager/features/cli/utils/ssh.nix +++ b/home-manager/features/cli/utils/ssh.nix @@ -3,6 +3,9 @@ in { options.features.cli.utils.ssh.enable = lib.mkEnableOption "ssh"; config = lib.mkIf cfg.enable { - programs.ssh.enable = true; + programs.ssh = { + enable = true; + enableDefaultConfig = false; + }; }; } |
