mirror of
https://github.com/nix-community/home-manager
synced 2024-11-24 03:59:46 +01:00
27 lines
495 B
Nix
27 lines
495 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options.khal = {
|
||
|
enable = lib.mkEnableOption "khal access";
|
||
|
|
||
|
readOnly = mkOption {
|
||
|
type = types.bool;
|
||
|
description = ''
|
||
|
Keep khal from making any changes to this account.
|
||
|
'';
|
||
|
default = false;
|
||
|
};
|
||
|
|
||
|
glob = mkOption {
|
||
|
type = types.str;
|
||
|
default = "*";
|
||
|
description = ''
|
||
|
The glob expansion to be searched for events or birthdays when type
|
||
|
is set to discover.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|