mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
43 lines
690 B
Nix
43 lines
690 B
Nix
# GNOME Online Miners daemon.
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
gnome3 = config.environment.gnome3.packageSet;
|
|
in
|
|
{
|
|
|
|
###### 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 {
|
|
|
|
environment.systemPackages = [ gnome3.gnome-online-miners ];
|
|
|
|
services.dbus.packages = [ gnome3.gnome-online-miners ];
|
|
|
|
};
|
|
|
|
}
|