Merge pull request #146335 from SuperSandro2000/locate

nixos/locate: ignore nix logs
This commit is contained in:
Robert Hensing 2021-11-17 14:17:56 +01:00 committed by GitHub
commit 715f634119
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -149,7 +149,7 @@ in {
prunePaths = mkOption { prunePaths = mkOption {
type = listOf path; type = listOf path;
default = ["/tmp" "/var/tmp" "/var/cache" "/var/lock" "/var/run" "/var/spool" "/nix/store"]; default = [ "/tmp" "/var/tmp" "/var/cache" "/var/lock" "/var/run" "/var/spool" "/nix/store" "/nix/var/log/nix" ];
description = '' description = ''
Which paths to exclude from indexing Which paths to exclude from indexing
''; '';