marleyos/modules/home/programs/ripgrep/default.nix
punkfairie 15372b7726
feat: ${namespace} -> marleyos
There was little point to doing this anyway as project-wide find &
replace is trivial.
2024-11-16 22:36:34 -08:00

19 lines
276 B
Nix

{
lib,
config,
namespace,
...
}:
let
inherit (lib) mkIf;
inherit (lib.marleyos) mkEnableModule;
cfg = config.marleyos.programs.ripgrep;
in
{
options = mkEnableModule "programs.ripgrep";
config = mkIf cfg.enable {
programs.ripgrep.enable = true;
};
}