commit 828af1e14c6240fc90a6f28b52304c91f12bf81a parent 5cf3a8ee47171b97ad246c8548cd9ec920b48ef3 Author: Vincent Demeester <vincent@sbr.pm> Date: Sat, 23 Mar 2019 10:24:56 +0100 profiles.mails: add msync command for one-short mail sync Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | modules/profiles/mails.nix | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/modules/profiles/mails.nix b/modules/profiles/mails.nix @@ -153,5 +153,13 @@ home.file."bin/msmtp" = { executable = true; }; +home.file."bin/msync" = { + text = '' + #!${pkgs.stdenv.shell} + systemctl --user start mbsync + ''; + executable = true; +} ; + }; }