Replace imapnotify with goimapnotify
This commit is contained in:
@@ -41,4 +41,26 @@
|
||||
startAt = "18:00:00";
|
||||
};
|
||||
|
||||
# Sync mail using IDLE
|
||||
systemd.user.services.goimapnotify-uni = {
|
||||
description = "Sync uni mail using IMAP IDLE";
|
||||
wantedBy = [ "default.target" ];
|
||||
path = with pkgs; [ goimapnotify pass-wayland isync notmuch ];
|
||||
script = ''
|
||||
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/uni.conf
|
||||
'';
|
||||
serviceConfig.Type = "simple";
|
||||
after = [ "network.target" ];
|
||||
};
|
||||
|
||||
systemd.user.services.goimapnotify-gmail = {
|
||||
description = "Sync gmail mail using IMAP IDLE";
|
||||
wantedBy = [ "default.target" ];
|
||||
path = with pkgs; [ goimapnotify pass-wayland isync notmuch ];
|
||||
script = ''
|
||||
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/gmail.conf
|
||||
'';
|
||||
serviceConfig.Type = "simple";
|
||||
after = [ "network.target" ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user