nixos-configuration/home/gnome-keyring.nix

11 lines
137 B
Nix
Raw Normal View History

2022-02-15 15:44:40 +01:00
{ ... }: {
services.gnome-keyring = {
enable = true;
components = [
"pkcs11"
"secrets"
# "ssh"
];
};
}