2014-04-20 23:18:01 +01:00
|
|
|
# GNOME Online Miners daemon.
|
|
|
|
|
2014-05-05 19:58:51 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
2014-04-20 23:18:01 +01:00
|
|
|
|
2014-05-05 19:58:51 +01:00
|
|
|
with lib;
|
2014-04-20 23:18:01 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.gnome3.gnome-online-miners = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable GNOME Online Miners, a service that
|
|
|
|
crawls through your online content.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.services.gnome3.gnome-online-miners.enable {
|
|
|
|
|
2017-09-24 12:15:50 +01:00
|
|
|
environment.systemPackages = [ pkgs.gnome3.gnome-online-miners ];
|
2014-04-20 23:18:01 +01:00
|
|
|
|
2017-09-24 12:15:50 +01:00
|
|
|
services.dbus.packages = [ pkgs.gnome3.gnome-online-miners ];
|
2014-04-20 23:18:01 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|