2014-04-11 00:41:51 +02:00
|
|
|
# GNOME Keyring daemon.
|
|
|
|
|
2014-05-05 20:58:51 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
2014-04-11 00:41:51 +02:00
|
|
|
|
2014-05-05 20:58:51 +02:00
|
|
|
with lib;
|
2014-04-11 00:41:51 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
|
2020-04-02 02:16:24 +02:00
|
|
|
meta = {
|
|
|
|
maintainers = teams.gnome.members;
|
|
|
|
};
|
|
|
|
|
2014-04-11 00:41:51 +02: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 02:22:27 +02:00
|
|
|
such as user names and passwords.
|
2014-04-11 00:41:51 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.services.gnome3.gnome-keyring.enable {
|
|
|
|
|
2018-02-25 03:23:58 +01:00
|
|
|
environment.systemPackages = [ pkgs.gnome3.gnome-keyring ];
|
2014-04-11 00:41:51 +02:00
|
|
|
|
2018-12-25 23:41:02 +01:00
|
|
|
services.dbus.packages = [ pkgs.gnome3.gnome-keyring pkgs.gcr ];
|
2014-04-11 00:41:51 +02:00
|
|
|
|
2020-02-09 01:28:22 +01:00
|
|
|
xdg.portal.extraPortals = [ pkgs.gnome3.gnome-keyring ];
|
|
|
|
|
2017-01-13 17:16:55 +01:00
|
|
|
security.pam.services.login.enableGnomeKeyring = true;
|
|
|
|
|
2019-04-15 20:54:03 +02:00
|
|
|
security.wrappers.gnome-keyring-daemon = {
|
|
|
|
source = "${pkgs.gnome3.gnome-keyring}/bin/gnome-keyring-daemon";
|
|
|
|
capabilities = "cap_ipc_lock=ep";
|
|
|
|
};
|
|
|
|
|
2014-04-11 00:41:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|