mirror of
https://github.com/nix-community/home-manager
synced 2024-11-24 03:59:46 +01:00
14 lines
189 B
Nix
14 lines
189 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options.khal = {
|
||
|
type = mkOption {
|
||
|
type = types.nullOr (types.enum [ "calendar" "discover"]);
|
||
|
description = ''
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|