39 lines
569 B
Nix
39 lines
569 B
Nix
![]() |
# Seahorse daemon.
|
||
|
|
||
|
{ config, pkgs, ... }:
|
||
|
|
||
|
with pkgs.lib;
|
||
|
|
||
|
{
|
||
|
|
||
|
###### interface
|
||
|
|
||
|
options = {
|
||
|
|
||
|
services.gnome3.seahorse = {
|
||
|
|
||
|
enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
description = ''
|
||
|
Whether to enable Seahorse search provider for the GNOME Shell activity search.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
###### implementation
|
||
|
|
||
|
config = mkIf config.services.gnome3.seahorse.enable {
|
||
|
|
||
|
environment.systemPackages = [ pkgs.gnome3.seahorse ];
|
||
|
|
||
|
services.dbus.packages = [ pkgs.gnome3.seahorse ];
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|