mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
18 lines
283 B
Nix
18 lines
283 B
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.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|