mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-24 04:40:53 +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 = {
|
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
Reference in a new issue