1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-10 19:11:06 +01:00
home-manager/modules/programs/khal-contact-accounts.nix
Austin Horstman 0b491b460f
treewide: remove with lib (#6735)
Continuation of `with lib;` cleanup.
2025-03-31 22:32:16 -05:00

11 lines
251 B
Nix

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