23 lines
673 B
Nix
23 lines
673 B
Nix
{ config, lib, pkgs, namespace, options, ... }:
|
|
|
|
let
|
|
cfg = config.${namespace}.gnome-keyring;
|
|
in {
|
|
options.${namespace}.gnome-keyring = {
|
|
enable = lib.mkEnableOption "Enable GNOME Keyring integration";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.gnome.gnome-keyring.enable = true;
|
|
|
|
# PAM configuration for automatic keyring unlock
|
|
security.pam.services.sddm.enableGnomeKeyring = true;
|
|
security.pam.services.login.enableGnomeKeyring = true;
|
|
security.pam.services.gdm.enableGnomeKeyring = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
seahorse # GUI for managing the keyring
|
|
gcr # Keyring integration
|
|
];
|
|
};
|
|
} |