50 lines
883 B
Nix
50 lines
883 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
meta = {
|
|
maintainers = lib.teams.gnome.members;
|
|
};
|
|
|
|
imports = [
|
|
(lib.mkRenamedOptionModule
|
|
[
|
|
"services"
|
|
"gnome"
|
|
"tracker-miners"
|
|
"enable"
|
|
]
|
|
[
|
|
"services"
|
|
"gnome"
|
|
"localsearch"
|
|
"enable"
|
|
]
|
|
)
|
|
];
|
|
|
|
options = {
|
|
services.gnome.localsearch = {
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable LocalSearch, indexing services for TinySPARQL
|
|
search engine and metadata storage system.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf config.services.gnome.localsearch.enable {
|
|
environment.systemPackages = [ pkgs.localsearch ];
|
|
|
|
services.dbus.packages = [ pkgs.localsearch ];
|
|
|
|
systemd.packages = [ pkgs.localsearch ];
|
|
};
|
|
}
|