2014-04-10 22:41:51 +00:00
|
|
|
# GNOME Keyring daemon.
|
|
|
|
|
2014-05-05 18:58:51 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2014-04-10 22:41:51 +00:00
|
|
|
|
2014-05-05 18:58:51 +00:00
|
|
|
with lib;
|
2014-04-10 22:41:51 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.gnome3.gnome-keyring = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable GNOME Keyring daemon, a service designed to
|
|
|
|
take care of the user's security credentials,
|
2015-07-01 00:22:27 +00:00
|
|
|
such as user names and passwords.
|
2014-04-10 22:41:51 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.services.gnome3.gnome-keyring.enable {
|
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
environment.systemPackages = [ pkgs.gnome3.gnome-keyring ];
|
2014-04-10 22:41:51 +00:00
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
services.dbus.packages = [ pkgs.gnome3.gnome-keyring pkgs.gnome3.gcr ];
|
2014-04-10 22:41:51 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|