nixdots/home/services/gnome-keyring.nix
2024-06-25 01:06:45 +02:00

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 ];
};
}