depot/third_party/home-manager/modules/programs/khal-accounts.nix

18 lines
283 B
Nix
Raw Normal View History

{ 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.
'';
};
};
}