1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/modules/programs/khal-calendar-accounts.nix

25 lines
531 B
Nix
Raw Normal View History

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