aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/fd.nix
blob: 7f8e35ca34bfccb1003d969e30a4e66916af47aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  config,
  lib,
  ...
}: let
  cfg = config.sils.fd;
in {
  options.sils.fd = {
    enable = lib.mkEnableOption "fd, a fast find alternative";
  };

  config = lib.mkIf cfg.enable {
    programs.fd = {
      enable = true;
    };
  };
}