mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-22 20:00:54 +01:00
chore: retract some mail options to default
This commit is contained in:
parent
aba9e52b15
commit
fabe33ee1e
1 changed files with 6 additions and 5 deletions
|
@ -32,7 +32,7 @@ with lib;
|
|||
};
|
||||
|
||||
programs.mbsync = {
|
||||
enable = true;
|
||||
enable = lib.mkDefault true;
|
||||
package = pkgs.unstable.isync;
|
||||
};
|
||||
|
||||
|
@ -128,16 +128,17 @@ with lib;
|
|||
};
|
||||
|
||||
services.mbsync = {
|
||||
enable = true;
|
||||
enable = lib.mkDefault true;
|
||||
frequency = "minutely";
|
||||
package = pkgs.unstable.isync;
|
||||
};
|
||||
|
||||
services.mbsync.postExec = "${pkgs.notmuch}/bin/notmuch new";
|
||||
services.mbsync.postExec = lib.mkDefault "${pkgs.notmuch}/bin/notmuch new";
|
||||
|
||||
programs.notmuch = {
|
||||
enable = true;
|
||||
enable = lib.mkDefault true;
|
||||
new.tags = [ "new" ];
|
||||
hooks.postNew = ''
|
||||
hooks.postNew = lib.mkDefault ''
|
||||
${pkgs.afew}/bin/afew --tag --new
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue