panacea/modules/periodic.nix

81 lines
2.3 KiB
Nix
Raw Normal View History

2020-08-10 23:45:26 +02:00
{ config, lib, pkgs, ... }:
2021-06-24 12:22:58 +02:00
with pkgs;
let
emacs-vterm = ((emacsPackagesNgGen emacsPgtkGcc).emacsWithPackages
(epkgs: with epkgs; [ vterm ]));
in {
2020-08-10 23:45:26 +02:00
# Upgrade Doom Emacs daily
systemd.user.services.doom-upgrade = {
description = "Upgrade Doom Emacs";
2021-06-24 12:22:58 +02:00
path = [ bash emacs-vterm git coreutils ];
2020-12-01 14:45:07 +01:00
script = ''
${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom -y upgrade"
2020-12-01 14:45:07 +01:00
'';
serviceConfig.Type = "oneshot";
startAt = "22:00:00";
2020-08-10 23:45:26 +02:00
};
# Clean up Doom Emacs monthly
systemd.user.services.doom-purge = {
description = "Purge Doom Emacs";
2021-06-24 12:22:58 +02:00
path = [ bash emacs-vterm git coreutils ];
2020-12-22 00:26:04 +01:00
script = ''
${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom -y purge"
2020-12-22 00:26:04 +01:00
'';
serviceConfig.Type = "oneshot";
2021-05-06 01:58:43 +02:00
startAt = "13-*-* 20:00:00";
2020-08-10 23:45:26 +02:00
};
# Upgrade Neovim plugins weekly
systemd.user.services.vim-plug-upgrade = {
description = "Upgrade Vim-Plug";
path = [ pkgs.git pkgs.neovim ];
script = "${pkgs.neovim}/bin/nvim +PlugUpgrade +PlugUpdate +qa";
serviceConfig.Type = "oneshot";
startAt = "Wed 18:00:00";
2020-08-10 23:45:26 +02:00
};
# Push password-store changes to git daily
systemd.user.services.password-store-push = {
description = "Push password-store changes to git";
path = [ pkgs.pass-wayland pkgs.git pkgs.gitAndTools.pass-git-helper ];
script = "${pkgs.pass-wayland}/bin/pass git push";
serviceConfig.Type = "oneshot";
startAt = "18:00:00";
};
2021-06-18 16:26:51 +02:00
# Sync mail using IDLE
systemd.user.services.goimapnotify-uni = {
description = "Sync uni mail using IMAP IDLE";
wantedBy = [ "default.target" ];
2021-06-24 12:22:58 +02:00
path = [ goimapnotify pass-wayland isync notmuch ];
2021-06-18 16:26:51 +02:00
script = ''
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/uni.conf
'';
2021-06-20 17:24:19 +02:00
serviceConfig = {
Type = "simple";
Restart = "always";
RestartSec = 20;
};
2021-06-18 16:26:51 +02:00
after = [ "network.target" ];
};
systemd.user.services.goimapnotify-gmail = {
description = "Sync gmail mail using IMAP IDLE";
wantedBy = [ "default.target" ];
2021-06-24 12:22:58 +02:00
path = [ goimapnotify pass-wayland isync notmuch ];
2021-06-18 16:26:51 +02:00
script = ''
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/gmail.conf
'';
2021-06-20 17:24:19 +02:00
serviceConfig = {
Type = "simple";
Restart = "always";
RestartSec = 20;
};
2021-06-18 16:26:51 +02:00
after = [ "network.target" ];
};
2020-08-10 23:45:26 +02:00
}