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
|
|
|
|
|
|
|
{
|
|
|
|
|
2020-04-02 01:16:24 +01:00
|
|
|
meta = {
|
|
|
|
maintainers = teams.gnome.members;
|
|
|
|
};
|
|
|
|
|
2021-05-07 22:18:14 +01:00
|
|
|
# Added 2021-05-07
|
|
|
|
imports = [
|
|
|
|
(mkRenamedOptionModule
|
|
|
|
[ "services" "gnome3" "gnome-keyring" "enable" ]
|
|
|
|
[ "services" "gnome" "gnome-keyring" "enable" ]
|
|
|
|
)
|
|
|
|
];
|
|
|
|
|
2014-04-10 23:41:51 +01:00
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2021-05-07 22:18:14 +01:00
|
|
|
services.gnome.gnome-keyring = {
|
2014-04-10 23:41:51 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2021-05-07 22:18:14 +01:00
|
|
|
config = mkIf config.services.gnome.gnome-keyring.enable {
|
2014-04-10 23:41:51 +01:00
|
|
|
|
2021-05-07 22:18:14 +01:00
|
|
|
environment.systemPackages = [ pkgs.gnome.gnome-keyring ];
|
2014-04-10 23:41:51 +01:00
|
|
|
|
2021-05-07 22:18:14 +01:00
|
|
|
services.dbus.packages = [ pkgs.gnome.gnome-keyring pkgs.gcr ];
|
2014-04-10 23:41:51 +01:00
|
|
|
|
2021-05-07 22:18:14 +01:00
|
|
|
xdg.portal.extraPortals = [ pkgs.gnome.gnome-keyring ];
|
2020-02-09 00:28:22 +00: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 = {
|
2021-09-12 17:53:48 +01:00
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
2019-04-15 19:54:03 +01:00
|
|
|
capabilities = "cap_ipc_lock=ep";
|
2021-09-12 17:53:48 +01:00
|
|
|
source = "${pkgs.gnome.gnome-keyring}/bin/gnome-keyring-daemon";
|
2019-04-15 19:54:03 +01:00
|
|
|
};
|
|
|
|
|
2014-04-10 23:41:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|