nixos_config/home/modules/services/gnome-keyring.nix

12 lines
135 B
Nix
Raw Normal View History

2026-03-10 21:50:51 +01:00
{ ... }:
2026-03-10 18:54:37 +01:00
{
2026-03-10 21:05:35 +01:00
services.gnome-keyring = {
enable = true;
components = [
"ssh"
"pkcs11"
"secrets"
];
};
2026-03-10 21:50:51 +01:00
}