depot/third_party/home-manager/modules/programs/khal-contact-accounts.nix
Default email 4d19ca4703 Project import generated by Copybara.
GitOrigin-RevId: a7117efb3725e6197dd95424136f79147aa35e5b
2024-06-04 11:23:39 -07:00

15 lines
269 B
Nix

{ 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.
'';
};
};
}