nixos/user/services/gnome-keyring.nix

6 lines
115 B
Nix
Raw Normal View History

2024-03-21 14:51:35 +00:00
{pkgs, config, ...}:{
services.gnome-keyring = {
enable = true;
components = [pkcs11 secrets ssh];
};
}