all repos — nixfiles @ ddfcc76a810998203532731c05789cec81ca4fd0

System and user configuration, managed by nix and home-manager

Move ripgrep to base, with PCRE2 in development/base
Alan Pearce alan@alanpearce.eu
Tue, 22 Oct 2019 19:04:40 +0200
commit

ddfcc76a810998203532731c05789cec81ca4fd0

parent

df9e2d5331a863e285bcfe66391728ce884a61bc

2 files changed, 6 insertions(+), 2 deletions(-)

jump to
M user/settings/base.nixuser/settings/base.nix
@@ -13,6 +13,7 @@ fd     sd
     entr
     file
+    ripgrep
     htop
     lsof
     iftop
M user/settings/development/base.nixuser/settings/development/base.nix
@@ -12,8 +12,6 @@     wrk
 
     ag
-    (ripgrep.override { withPCRE2 = true; })
-
     httpie
     jq
 
@@ -27,4 +25,9 @@ (lib.lowPrio firefox-devedition-bin)     ] else [
     ]
   );
+  nixpkgs.overlays = [
+    (self: super: {
+      ripgrep = super.ripgrep.override { withPCRE2 = true; };
+    })
+  ];
 }