mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 21:20:13 +00:00
more updates
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
{ config, lib, ... }:
|
||||
|
||||
let
|
||||
cfg = config.nmasur.presets.programs.notmuch;
|
||||
in
|
||||
|
||||
{
|
||||
|
||||
options.nmasur.presets.programs.notmuch.enable = lib.mkEnableOption "Notmuch mail indexing";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
# Better local mail search
|
||||
programs.notmuch = {
|
||||
enable = true;
|
||||
new.ignore = [
|
||||
".mbsyncstate.lock"
|
||||
".mbsyncstate.journal"
|
||||
".mbsyncstate.new"
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
}
|
Reference in New Issue
Block a user