2d280840f8
gcr is used to provide the popup dialog, this fixes gnome-keyring for non-gnome sessions
43 lines
733 B
Nix
43 lines
733 B
Nix
# GNOME Keyring daemon.
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
gnome3 = config.environment.gnome3.packageSet;
|
|
in
|
|
{
|
|
|
|
###### 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.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.services.gnome3.gnome-keyring.enable {
|
|
|
|
environment.systemPackages = [ gnome3.gnome_keyring ];
|
|
|
|
services.dbus.packages = [ gnome3.gnome_keyring gnome3.gcr ];
|
|
|
|
};
|
|
|
|
}
|