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

54 lines
1.0 KiB
Nix
Raw Normal View History

2014-04-10 15:41:51 -07:00
# GNOME Keyring daemon.
{ config, pkgs, lib, ... }:
2014-04-10 15:41:51 -07:00
with lib;
2014-04-10 15:41:51 -07:00
{
meta = {
maintainers = teams.gnome.members;
};
2014-04-10 15:41:51 -07: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-10 15:41:51 -07:00
'';
};
};
};
###### implementation
config = mkIf config.services.gnome3.gnome-keyring.enable {
environment.systemPackages = [ pkgs.gnome3.gnome-keyring ];
2014-04-10 15:41:51 -07:00
2018-12-25 14:41:02 -08:00
services.dbus.packages = [ pkgs.gnome3.gnome-keyring pkgs.gcr ];
2014-04-10 15:41:51 -07:00
2020-02-08 16:28:22 -08: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-10 15:41:51 -07:00
};
}