users/foo-dogsquared/programs/dconf: add indexer locations for GNOME Shell setups

This commit is contained in:
Gabriel Arazas 2025-01-12 17:52:59 +08:00
parent a4871f04b6
commit 2f93b33e0c
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -1,6 +1,7 @@
{ config, lib, ... }:
let
inherit (config.xdg) userDirs;
userCfg = config.users.foo-dogsquared;
cfg = userCfg.programs.dconf;
in
@ -26,6 +27,20 @@ in
base = 10;
word-size = 64;
};
"org/freedesktop/tracker/miner/files" = {
index-recursive-directories = [
# We could also use the values from home-manager but just to make GNOME Settings happy.
"&DESKTOP"
"&DOCUMENTS"
"&MUSIC"
"&PICTURES"
"&VIDEOS"
"&PUBLIC_SHARE"
userDirs.extraConfig.XDG_PROJECTS_DIR
];
};
};
};
}