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