depot/third_party/home-manager/modules/programs/khal-contact-accounts.nix

16 lines
269 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
{
options.khal = {
collections = mkOption {
type = types.nullOr (types.listOf types.str);
default = null;
description = ''
VCARD collections to be searched for contact birthdays.
'';
};
};
}