nixos-configuration/home/gnome-keyring.nix

11 lines
137 B
Nix

{ ... }: {
services.gnome-keyring = {
enable = true;
components = [
"pkcs11"
"secrets"
# "ssh"
];
};
}