1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-12 12:01:08 +01:00
home-manager/modules/programs/khal/contact-accounts.nix
Austin Horstman 4fca600cb1 treewide: implement auto importing for modules
Reduce maintenance burden and increase efficiency by automatically
importing modules following a specific convention.

Co-authored-by: awwpotato <awwpotato@voidq.com>
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-22 23:58:37 -05:00

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