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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.2 KiB
Nix
Raw Normal View History

2014-04-10 22:41:51 +00:00
# GNOME Keyring daemon.
{ config, pkgs, lib, ... }:
2014-04-10 22:41:51 +00:00
with lib;
2014-04-10 22:41:51 +00:00
{
meta = {
maintainers = teams.gnome.members;
};
# Added 2021-05-07
imports = [
(mkRenamedOptionModule
[ "services" "gnome3" "gnome-keyring" "enable" ]
[ "services" "gnome" "gnome-keyring" "enable" ]
)
];
2014-04-10 22:41:51 +00:00
###### interface
options = {
services.gnome.gnome-keyring = {
2014-04-10 22:41:51 +00:00
enable = mkOption {
type = types.bool;
default = false;
description = ''
2014-04-10 22:41:51 +00:00
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 22:41:51 +00:00
'';
};
};
};
###### implementation
config = mkIf config.services.gnome.gnome-keyring.enable {
2014-04-10 22:41:51 +00:00
environment.systemPackages = [ pkgs.gnome.gnome-keyring ];
2014-04-10 22:41:51 +00:00
services.dbus.packages = [ pkgs.gnome.gnome-keyring pkgs.gcr ];
2014-04-10 22:41:51 +00:00
xdg.portal.extraPortals = [ pkgs.gnome.gnome-keyring ];
2020-02-09 00:28:22 +00:00
security.pam.services.login.enableGnomeKeyring = true;
security.wrappers.gnome-keyring-daemon = {
owner = "root";
group = "root";
capabilities = "cap_ipc_lock=ep";
source = "${pkgs.gnome.gnome-keyring}/bin/gnome-keyring-daemon";
};
2014-04-10 22:41:51 +00:00
};
}