summaryrefslogtreecommitdiff
path: root/home-manager/features/cli/utils/ssh.nix
blob: 5579cc02988da8e9e42e9c807556560c4de4c642 (plain)
1
2
3
4
5
6
7
8
{ 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;
  };
}