1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-18 00:59:44 +01:00
home-manager/modules/programs/khal-accounts.nix

18 lines
305 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
{
options.khal = {
enable = lib.mkEnableOption (lib.mdDoc "khal access");
readOnly = mkOption {
type = types.bool;
default = false;
description = lib.mdDoc ''
Keep khal from making any changes to this account.
'';
};
};
}