summaryrefslogtreecommitdiffstats
path: root/nixos/modules/misc/locate.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/misc/locate.nix')
-rw-r--r--nixos/modules/misc/locate.nix67
1 files changed, 66 insertions, 1 deletions
diff --git a/nixos/modules/misc/locate.nix b/nixos/modules/misc/locate.nix
index 92aa3be0a366..426281c94129 100644
--- a/nixos/modules/misc/locate.nix
+++ b/nixos/modules/misc/locate.nix
@@ -73,7 +73,72 @@ in {
pruneFS = mkOption {
type = listOf str;
- default = ["afs" "anon_inodefs" "auto" "autofs" "bdev" "binfmt" "binfmt_misc" "cgroup" "cifs" "coda" "configfs" "cramfs" "cpuset" "debugfs" "devfs" "devpts" "devtmpfs" "ecryptfs" "eventpollfs" "exofs" "futexfs" "ftpfs" "fuse" "fusectl" "gfs" "gfs2" "hostfs" "hugetlbfs" "inotifyfs" "iso9660" "jffs2" "lustre" "misc" "mqueue" "ncpfs" "nnpfs" "ocfs" "ocfs2" "pipefs" "proc" "ramfs" "rpc_pipefs" "securityfs" "selinuxfs" "sfs" "shfs" "smbfs" "sockfs" "spufs" "nfs" "NFS" "nfs4" "nfsd" "sshfs" "subfs" "supermount" "sysfs" "tmpfs" "ubifs" "udf" "usbfs" "vboxsf" "vperfctrfs" ];
+ default = [
+ "afs"
+ "anon_inodefs"
+ "auto"
+ "autofs"
+ "bdev"
+ "binfmt"
+ "binfmt_misc"
+ "cgroup"
+ "cifs"
+ "coda"
+ "configfs"
+ "cramfs"
+ "cpuset"
+ "debugfs"
+ "devfs"
+ "devpts"
+ "devtmpfs"
+ "ecryptfs"
+ "eventpollfs"
+ "exofs"
+ "futexfs"
+ "ftpfs"
+ "fuse"
+ "fusectl"
+ "fuse.sshfs"
+ "gfs"
+ "gfs2"
+ "hostfs"
+ "hugetlbfs"
+ "inotifyfs"
+ "iso9660"
+ "jffs2"
+ "lustre"
+ "misc"
+ "mqueue"
+ "ncpfs"
+ "nnpfs"
+ "ocfs"
+ "ocfs2"
+ "pipefs"
+ "proc"
+ "ramfs"
+ "rpc_pipefs"
+ "securityfs"
+ "selinuxfs"
+ "sfs"
+ "shfs"
+ "smbfs"
+ "sockfs"
+ "spufs"
+ "nfs"
+ "NFS"
+ "nfs4"
+ "nfsd"
+ "sshfs"
+ "subfs"
+ "supermount"
+ "sysfs"
+ "tmpfs"
+ "ubifs"
+ "udf"
+ "usbfs"
+ "vboxsf"
+ "vperfctrfs"
+ ];
description = ''
Which filesystem types to exclude from indexing
'';