ripgrep
This commit is contained in:
parent
a6cb2c8628
commit
ef663af22b
|
@ -5,6 +5,7 @@
|
||||||
./home-manager.nix
|
./home-manager.nix
|
||||||
./impermanence.nix
|
./impermanence.nix
|
||||||
./network.nix
|
./network.nix
|
||||||
|
./ripgrep.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./system.nix
|
./system.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
|
|
11
modules/base/ripgrep.nix
Normal file
11
modules/base/ripgrep.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ home-manager, ... }: {
|
||||||
|
|
||||||
|
home-manager.users.caspervk = {
|
||||||
|
programs.ripgrep = {
|
||||||
|
enable = true;
|
||||||
|
arguments = [
|
||||||
|
"--smart-case"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -41,7 +41,6 @@
|
||||||
progress
|
progress
|
||||||
pwgen
|
pwgen
|
||||||
python3
|
python3
|
||||||
ripgrep
|
|
||||||
rsync
|
rsync
|
||||||
sqlite
|
sqlite
|
||||||
tmux
|
tmux
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./kanshi.nix
|
./kanshi.nix
|
||||||
|
./ripgrep.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
7
overlays/ripgrep.nix
Normal file
7
overlays/ripgrep.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ home-manager, home-manager-unstable, ... }: {
|
||||||
|
# ripgrep isn't in Home Manager v23.05
|
||||||
|
|
||||||
|
home-manager.users.caspervk = {
|
||||||
|
imports = [ "${home-manager-unstable}/modules/programs/ripgrep.nix" ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue