home-manager/modules/programs/khal-calendar-accounts.nix

25 lines
471 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
{
options.khal = {
type = mkOption {
type = types.nullOr (types.enum [ "calendar" "discover"]);
2019-07-10 01:52:36 +02:00
default = null;
description = ''
2019-07-10 01:52:36 +02:00
There is no description of this option.
'';
};
glob = mkOption {
type = types.str;
default = "*";
description = ''
The glob expansion to be searched for events or birthdays when
type is set to discover.
'';
};
};
}