mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
13 lines
335 B
Nix
13 lines
335 B
Nix
{pkgs, ...}: {
|
|
config = {
|
|
services.gnome-keyring.enable = true;
|
|
xdg.portal.config.common = {
|
|
"org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ];
|
|
};
|
|
|
|
# Enable seahorse (application for managing encryption keys
|
|
# and passwords in the gnome keyring)
|
|
home.packages = with pkgs; [ seahorse ];
|
|
};
|
|
}
|