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-calendar-accounts.nix
Austin Horstman 0b491b460f
treewide: remove with lib (#6735)
Continuation of `with lib;` cleanup.
2025-03-31 22:32:16 -05:00

20 lines
527 B
Nix

{ lib, ... }: {
options.khal = {
type = lib.mkOption {
type = lib.types.enum [ "calendar" "discover" ];
default = "calendar";
description = ''
Either a single calendar (calendar which is the default) or a directory with multiple calendars (discover).
'';
};
glob = lib.mkOption {
type = lib.types.str;
default = "*";
description = ''
The glob expansion to be searched for events or birthdays when
type is set to discover.
'';
};
};
}