0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/gnome-keyring: enable gnome-keyring for fingerprint authentication'

this should be enabled by default if fprintd is enabled
This commit is contained in:
John Titor 2024-06-20 23:07:25 +05:30
parent c24c7933ba
commit 6bb516d45f
No known key found for this signature in database
GPG key ID: 29B0514F4E3C1CC0

View file

@ -43,6 +43,9 @@ in
gdm-password.enableGnomeKeyring = true;
gdm-autologin.enableGnomeKeyring = true;
})
(lib.mkIf (config.services.xserver.displayManager.gdm.enable && config.services.fprintd.enable) {
gdm-fingerprint.enableGnomeKeyring = true;
})
];
security.wrappers.gnome-keyring-daemon = {