nix/modules/home-manager/gui/programs/keyring.nix

13 lines
191 B
Nix

{ pkgs, ... }:
{
services.gnome-keyring = {
enable = true;
components = [
"pkcs11"
"secrets"
"ssh"
];
};
home.packages = with pkgs; [ gnome.seahorse ];
}