summaryrefslogtreecommitdiff
path: root/home/ebisu/core/utility
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-23 03:14:14 -0700
committerFuwn <[email protected]>2024-10-23 03:14:14 -0700
commita78dbdfefd1ce9a2b61a8a64491669bf28260a2b (patch)
treef071d1359f3b403c9351bb8148443231968fd3e5 /home/ebisu/core/utility
parenthome: move scripting to shared (diff)
downloadnixos-config-a78dbdfefd1ce9a2b61a8a64491669bf28260a2b.tar.xz
nixos-config-a78dbdfefd1ce9a2b61a8a64491669bf28260a2b.zip
home: move shared subset to core
Diffstat (limited to 'home/ebisu/core/utility')
-rw-r--r--home/ebisu/core/utility/default.nix5
-rw-r--r--home/ebisu/core/utility/ripgrep.nix5
2 files changed, 10 insertions, 0 deletions
diff --git a/home/ebisu/core/utility/default.nix b/home/ebisu/core/utility/default.nix
new file mode 100644
index 0000000..99f6594
--- /dev/null
+++ b/home/ebisu/core/utility/default.nix
@@ -0,0 +1,5 @@
+{ pkgs, ... }:
+{
+ imports = [ ./ripgrep.nix ];
+ home.packages = [ pkgs.ripunzip ];
+}
diff --git a/home/ebisu/core/utility/ripgrep.nix b/home/ebisu/core/utility/ripgrep.nix
new file mode 100644
index 0000000..5d221e3
--- /dev/null
+++ b/home/ebisu/core/utility/ripgrep.nix
@@ -0,0 +1,5 @@
+{ pkgs, ... }:
+{
+ programs.ripgrep.enable = true;
+ home.packages = with pkgs; [ ripgrep-all ];
+}