diff --git a/nixos/profiles/device-type/desktop/graphical/gnome-keyring.nix b/nixos/profiles/device-type/desktop/graphical/gnome-keyring.nix index e5caece..8d22c73 100644 --- a/nixos/profiles/device-type/desktop/graphical/gnome-keyring.nix +++ b/nixos/profiles/device-type/desktop/graphical/gnome-keyring.nix @@ -1,10 +1,5 @@ -{pkgs, ...}: { +_: { # gnome keyring services.gnome.gnome-keyring.enable = true; programs.seahorse.enable = true; - security.pam.services."gnome-keyring".text = '' - auth optional ${pkgs.gnome.gnome-keyring}/lib/security/pam_gnome_keyring.so - session optional ${pkgs.gnome.gnome-keyring}/lib/security/pam_gnome_keyring.so auto_start - password optional ${pkgs.gnome.gnome-keyring}/lib/security/pam_gnome_keyring.so - ''; }