mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-12 12:01:08 +01:00
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>
12 lines
251 B
Nix
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.
|
|
'';
|
|
};
|
|
};
|
|
}
|