add service for locate on nixdesk

locate is basically a linux equivelent of search everything by voidtools
This commit is contained in:
xunuwu 2025-05-28 00:31:00 +02:00
parent a789a7ec7c
commit 1ca38b72a0
2 changed files with 9 additions and 1 deletions

View file

@ -0,0 +1,6 @@
{lib, ...}: {
services.locate = {
enable = true;
pruneNames = lib.mkOptionDefault [".jj"];
};
}