Skip to content

Commit

Permalink
refactor: cleanup ripgrep dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jan 29, 2024
1 parent 2c2b699 commit 6aa88f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion modules/darwin/suites/desktop/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ in
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
fastfetch
ripgrep
];

khanelinix.desktop.addons = {
Expand Down
6 changes: 5 additions & 1 deletion modules/home/cli-apps/neovim/plugins/telescope.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{ ... }: {
{ pkgs, ... }: {
home.packages = with pkgs; [
ripgrep
];

programs.nixvim = {
plugins.telescope = {
enable = true;
Expand Down
1 change: 1 addition & 0 deletions modules/home/cli-apps/yazi/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ in

config = mkIf cfg.enable {
home.packages = with pkgs; [
ripgrep
zoxide
];

Expand Down

0 comments on commit 6aa88f0

Please sign in to comment.