Add gnome-keyring

This commit is contained in:
ItsDrike 2024-06-25 01:03:02 +02:00
parent 0403ff8fb4
commit a6eb7496f7
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 13 additions and 0 deletions

View file

@ -1,5 +1,6 @@
_: {
imports = [
./dunst.nix
./gnome-keyring.nix
];
}

View file

@ -0,0 +1,12 @@
{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 ];
};
}