mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
40c57ce052
* programs.khal: fix build failure due to null value * calendar: allow null value for primaryCollection * calendar / programs.khal: set default values to avoid common errors
24 lines
531 B
Nix
24 lines
531 B
Nix
{ 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.
|
|
'';
|
|
};
|
|
};
|
|
}
|