1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00
home-manager/modules/programs/offlineimap-accounts.nix
Austin Horstman 0b491b460f
treewide: remove with lib (#6735)
Continuation of `with lib;` cleanup.
2025-03-31 22:32:16 -05:00

48 lines
1.1 KiB
Nix

{ lib, ... }:
let
inherit (lib) mkOption types;
extraConfigType = with types; attrsOf (either (either str int) bool);
in {
options.offlineimap = {
enable = lib.mkEnableOption "OfflineIMAP";
extraConfig.account = mkOption {
type = extraConfigType;
default = { };
example = { autorefresh = 20; };
description = ''
Extra configuration options to add to the account section.
'';
};
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.";
};
};
}