mirror of
https://github.com/nix-community/home-manager
synced 2024-11-08 20:29:43 +01:00
47 lines
901 B
Nix
47 lines
901 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
extraConfigType = with types; attrsOf (either (either str int) bool);
|
||
|
|
||
|
in
|
||
|
|
||
|
{
|
||
|
options.offlineimap = {
|
||
|
enable = mkEnableOption "OfflineIMAP";
|
||
|
|
||
|
extraConfig.local = mkOption {
|
||
|
type = extraConfigType;
|
||
|
default = {};
|
||
|
example = {
|
||
|
sync_deletes = true;
|
||
|
};
|
||
|
description = ''
|
||
|
Extra configuration options to add to the local account
|
||
|
section.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
extraConfig.remote = mkOption {
|
||
|
type = extraConfigType;
|
||
|
default = {};
|
||
|
example = {
|
||
|
maxconnections = 2;
|
||
|
expunge = false;
|
||
|
};
|
||
|
description = ''
|
||
|
Extra configuration options to add to the remote account
|
||
|
section.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
postSyncHookCommand = mkOption {
|
||
|
type = types.lines;
|
||
|
default = "";
|
||
|
description = "Command to run after fetching new mails.";
|
||
|
};
|
||
|
};
|
||
|
}
|