mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
782eed8bb6
- Add `accounts.<calendar|contact>.accounts.<name>.khal.addresses` option to enable new configuration option, "addresses", from khal, which is used for showing participation status [1]. - Remove mistaken new line in khal implementation, refer to [2]. - Make additions to the existing test case to check the new addresses feature. And remove the empty lines in expected configs. [1]: https://khal.readthedocs.io/en/latest/configure.html#the-calendars-section [2]: https://github.com/nix-community/home-manager/pull/5192#pullrequestreview-1975091763
44 lines
1 KiB
Nix
44 lines
1 KiB
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.khal = {
|
|
enable = lib.mkEnableOption "khal access";
|
|
|
|
readOnly = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Keep khal from making any changes to this account.
|
|
'';
|
|
};
|
|
|
|
color = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = ''
|
|
Color in which events in this calendar are displayed.
|
|
For instance 'light green' or an RGB color '#ff0000'
|
|
'';
|
|
example = "light green";
|
|
};
|
|
|
|
priority = mkOption {
|
|
type = types.int;
|
|
default = 10;
|
|
description = ''
|
|
Priority of a calendar used for coloring (calendar with highest priority is preferred).
|
|
'';
|
|
};
|
|
|
|
addresses = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
description = ''
|
|
Email addresses to be associated with this account. Used to check the
|
|
participation status ("PARTSTAT"), refer to khal documentation.
|
|
'';
|
|
};
|
|
};
|
|
}
|