Rid of gnome-keyring

This commit is contained in:
Natsu Kagami 2024-06-03 23:20:43 +02:00
parent aa3524840c
commit 1f14b6b02a
Signed by: nki
GPG key ID: 55A032EB38B49ADB
4 changed files with 13 additions and 24 deletions

View file

@ -1,12 +0,0 @@
{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.nki.services.pam;
in
{
options.nki.services.pam.enableGnomeKeyring = mkEnableOption "Enable gnome-keyring on login";
config = mkIf cfg.enableGnomeKeyring {
security.pam.services.login.enableGnomeKeyring = true;
# security.pam.services.login.gnupg.enable = true;
};
}