48 lines
912 B
Nix
Raw Normal View History

2014-04-11 00:41:51 +02:00
# GNOME Keyring daemon.
{ config, pkgs, lib, ... }:
2014-04-11 00:41:51 +02:00
with lib;
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,
such as user names and passwords.
2014-04-11 00:41:51 +02:00
'';
};
};
};
###### implementation
config = mkIf config.services.gnome3.gnome-keyring.enable {
environment.systemPackages = [ pkgs.gnome3.gnome-keyring ];
2014-04-11 00:41:51 +02:00
2018-12-25 17:41:02 -05:00
services.dbus.packages = [ pkgs.gnome3.gnome-keyring pkgs.gcr ];
2014-04-11 00:41:51 +02:00
security.pam.services.login.enableGnomeKeyring = true;
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
};
}