summaryrefslogtreecommitdiff
path: root/home-manager/features/cli/utils/ssh.nix
blob: 3b7cc03576301b1ab5eb589c783a4869088767e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, lib, ... }: let
  cfg = config.features.cli.utils.ssh;
in {
  options.features.cli.utils.ssh.enable = lib.mkEnableOption "ssh";
  config = lib.mkIf cfg.enable {
    programs.ssh = {
      enable = true;
      enableDefaultConfig = false;
    };
  };
}