nixpkgs-suyu/nixos/modules/services/desktops/gnome3/gnome-keyring.nix

54 lines
1 KiB
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
{
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,
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 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 ];
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
};
}