This commit is contained in:
ashisgreat22 2026-01-14 21:24:19 +01:00
commit 2be8de47fa
87 changed files with 11501 additions and 0 deletions

14
system/locate.nix Normal file
View file

@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
...
}:
{
users.groups.mlocate = { };
services.locate = {
enable = true;
package = pkgs.mlocate;
interval = "daily";
};
}