summaryrefslogtreecommitdiff
path: root/email/mailsync.nix
diff options
context:
space:
mode:
Diffstat (limited to 'email/mailsync.nix')
-rw-r--r--email/mailsync.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/email/mailsync.nix b/email/mailsync.nix
deleted file mode 100644
index 3fcb0c5..0000000
--- a/email/mailsync.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- inputs,
- config,
- pkgs,
- ...
-}: {
- programs.mbsync = {
- enable = true;
- };
- systemd.user.timers.mailsync = {
- Unit = {
- Description = "daemon that syncs mail";
- };
- Timer = {
- OnBootSec = "5m";
- OnUnitActiveSec = "5m";
- Unit = "mailsync.service";
- };
- Install = {
- WantedBy = [ "timers.target" ];
- };
- };
- systemd.user.services.mailsync = {
- Unit = {
- Description = "daemon that syncs mail";
- };
- Service = {
- Type = "oneshot";
- RemainAfterExit = "no";
- ExecSearchPath = "${config.home.profileDirectory}/bin:/run/current-system/sw/bin";
- ExecStart = "${pkgs.coreutils}/bin/env mailsync";
- };
- };
-}