nixos-config/sys/profiles/services/locate.nix
xunuwu 1ca38b72a0 add service for locate on nixdesk
locate is basically a linux equivelent of search everything by voidtools
2025-05-28 01:07:05 +02:00

6 lines
108 B
Nix

{lib, ...}: {
services.locate = {
enable = true;
pruneNames = lib.mkOptionDefault [".jj"];
};
}