1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-02 19:38:32 +02:00
home-manager/tests/modules/services/recoll/basic-configuration.nix
2022-07-27 14:25:27 +02:00

36 lines
997 B
Nix

{ config, ... }:
{
services.recoll = {
enable = true;
package = config.lib.test.mkStubPackage { };
configDir = "${config.xdg.configHome}/recoll";
settings = {
topdirs = [ "~/Downloads" "~/Documents" "~/library" ];
"skippedNames+" = [ "node_modules" ];
underscoresasletter = true;
nocjk = false;
"~/library/projects" = {
"skippedNames+" =
[ ".editorconfig" ".gitignore" "result" "flake.lock" "go.sum" ];
};
"~/library/projects/software" = {
"skippedNames+" = [ "target" "result" ];
};
"~/what-is-this-project" = { "skippedNames+" = [ "whoa-there" ]; };
};
};
nmt.script = ''
assertFileExists home-files/.config/systemd/user/recollindex.service
assertFileExists home-files/.config/systemd/user/recollindex.timer
assertFileExists home-files/.config/recoll/recoll.conf
assertFileContent home-files/.config/recoll/recoll.conf \
${./basic-configuration.conf}
'';
}