diff --git a/nix/home/opdavies/default.nix b/nix/home/opdavies/default.nix
index d389ac34..649530e5 100644
--- a/nix/home/opdavies/default.nix
+++ b/nix/home/opdavies/default.nix
@@ -69,6 +69,5 @@ in
     ];
     PULUMI_SKIP_UPDATE_CHECK = "true";
     REPOS = "$HOME/Code";
-    RIPGREP_CONFIG_PATH = "$HOME/.config/ripgrep/config";
   };
 }
diff --git a/nix/modules/home-manager/features/cli/default.nix b/nix/modules/home-manager/features/cli/default.nix
index e074b3d2..c0c7e06e 100644
--- a/nix/modules/home-manager/features/cli/default.nix
+++ b/nix/modules/home-manager/features/cli/default.nix
@@ -10,7 +10,6 @@
     ./neovim.nix
     ./notes.nix
     ./phpactor.nix
-    ./ripgrep.nix
     ./starship.nix
     ./syncthing.nix
     ./tmux.nix
diff --git a/nix/modules/home-manager/features/cli/neovim.nix b/nix/modules/home-manager/features/cli/neovim.nix
index 5fcca729..157f86c2 100644
--- a/nix/modules/home-manager/features/cli/neovim.nix
+++ b/nix/modules/home-manager/features/cli/neovim.nix
@@ -170,6 +170,7 @@ in
         phpPackages.php-codesniffer
         phpPackages.phpstan
         proselint
+        ripgrep
         shellcheck
         yamllint
       ];
diff --git a/nix/modules/home-manager/features/cli/ripgrep.nix b/nix/modules/home-manager/features/cli/ripgrep.nix
deleted file mode 100644
index 2d6aa72f..00000000
--- a/nix/modules/home-manager/features/cli/ripgrep.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ pkgs, ... }:
-{
-  home.packages = with pkgs; [ ripgrep ];
-
-  xdg.configFile."ripgrep/config".text = ''
-    --follow
-    --smart-case
-  '';
-}