diff options
| author | Fuwn <[email protected]> | 2024-10-23 03:14:14 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-23 03:14:14 -0700 |
| commit | a78dbdfefd1ce9a2b61a8a64491669bf28260a2b (patch) | |
| tree | f071d1359f3b403c9351bb8148443231968fd3e5 /home/ebisu/core/utility | |
| parent | home: move scripting to shared (diff) | |
| download | nixos-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.nix | 5 | ||||
| -rw-r--r-- | home/ebisu/core/utility/ripgrep.nix | 5 |
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 ]; +} |