nix-config/modules/keyring.nix
2020-09-25 16:25:31 +02:00

7 lines
116 B
Nix

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