mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
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.
7 lines
98 B
Nix
7 lines
98 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.notmuch = {
|
|
enable = lib.mkEnableOption "notmuch indexing";
|
|
};
|
|
}
|