mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
notmuch: inline notmuch-accounts.nix
Having it in a separate file is a bit unnecessary.
This commit is contained in:
parent
690d93c22a
commit
43ab2f40b9
2 changed files with 4 additions and 6 deletions
|
@ -1,5 +0,0 @@
|
|||
{ lib, ... }:
|
||||
|
||||
{
|
||||
options.notmuch = { enable = lib.mkEnableOption "notmuch indexing"; };
|
||||
}
|
|
@ -145,7 +145,10 @@ in {
|
|||
};
|
||||
|
||||
accounts.email.accounts = mkOption {
|
||||
type = with types; attrsOf (submodule (import ./notmuch-accounts.nix));
|
||||
type = with types;
|
||||
attrsOf (submodule {
|
||||
options.notmuch.enable = mkEnableOption "notmuch indexing";
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue