2014-04-10 23:41:51 +01:00
|
|
|
# GNOME Keyring daemon.
|
|
|
|
|
2014-05-05 19:58:51 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
2014-04-10 23:41:51 +01:00
|
|
|
|
2014-05-05 19:58:51 +01:00
|
|
|
with lib;
|
2014-04-10 23:41:51 +01: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 01:22:27 +01:00
|
|
|
such as user names and passwords.
|
2014-04-10 23:41:51 +01: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 23:41:51 +01:00
|
|
|
|
2018-12-25 22:41:02 +00:00
|
|
|
services.dbus.packages = [ pkgs.gnome3.gnome-keyring pkgs.gcr ];
|
2014-04-10 23:41:51 +01:00
|
|
|
|
2017-01-13 16:16:55 +00:00
|
|
|
security.pam.services.login.enableGnomeKeyring = true;
|
|
|
|
|
2019-04-15 19:54:03 +01:00
|
|
|
security.wrappers.gnome-keyring-daemon = {
|
|
|
|
source = "${pkgs.gnome3.gnome-keyring}/bin/gnome-keyring-daemon";
|
|
|
|
capabilities = "cap_ipc_lock=ep";
|
|
|
|
};
|
|
|
|
|
2014-04-10 23:41:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|