4b32f16747
This reworks the way program specific email account options are specified. In particular, we no longer use the deprecated `options` field of `mkOption`. Instead submodules are used.
8 lines
98 B
Nix
8 lines
98 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.notmuch = {
|
|
enable = lib.mkEnableOption "notmuch indexing";
|
|
};
|
|
}
|