nix-config/modules/keyring.nix
2020-08-01 15:46:33 +02:00

7 lines
121 B
Nix

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