common/locate: init
This commit is contained in:
@@ -19,6 +19,7 @@ in {
|
|||||||
./services/irqbalance.nix
|
./services/irqbalance.nix
|
||||||
./services/journald.nix
|
./services/journald.nix
|
||||||
./services/libinput.nix
|
./services/libinput.nix
|
||||||
|
./services/locate.nix
|
||||||
./services/logind.nix
|
./services/logind.nix
|
||||||
./services/openssh.nix
|
./services/openssh.nix
|
||||||
./services/pcscd.nix
|
./services/pcscd.nix
|
||||||
|
17
hosts/common/services/locate.nix
Normal file
17
hosts/common/services/locate.nix
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
services.locate = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.plocate;
|
||||||
|
pruneNames = [
|
||||||
|
".bzr"
|
||||||
|
".cache"
|
||||||
|
".git"
|
||||||
|
".hg"
|
||||||
|
".svn"
|
||||||
|
|
||||||
|
".direnv"
|
||||||
|
"target"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user