nix-dotfiles/modules/plocate.nix
ahuston-0 a1c331eb1f
Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 10s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 2m26s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Successful in 7m52s
Check flake.lock / Check health of `flake.lock` (push) Successful in 10s
Check Nix formatting / Perform Nix format checks (push) Successful in 2m26s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (push) Successful in 7m13s
Update flakes / createPullRequest (push) Failing after 13m6s
update flake lock, remove defunct plocate option, fix swap
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2025-01-26 13:38:47 -05:00

10 lines
165 B
Nix

{ lib, pkgs, ... }:
{
services.locate = {
enable = lib.mkDefault true;
# localuser = lib.mkDefault null;
package = lib.mkDefault pkgs.plocate;
};
}