panacea/modules/periodic.nix

144 lines
4.6 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
2022-04-25 06:35:04 +02:00
emacs-vterm = ((emacsPackagesFor emacs28NativeComp).emacsWithPackages
2022-05-20 00:55:02 +02:00
(epkgs: with epkgs; [ vterm pdf-tools ]));
isync-oauth2 = isync.overrideAttrs
(div: rec { buildInputs = [ openssl patched-cyrus-sasl-oauth2 zlib ]; });
2021-06-24 12:22:58 +02:00
in {
2022-09-10 06:15:01 +02:00
# Upgrade Doom Emacs weekly
2020-08-10 23:45:26 +02:00
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 -! upgrade"
2020-12-01 14:45:07 +01:00
'';
serviceConfig.Type = "oneshot";
2022-09-10 06:15:01 +02:00
startAt = "Mon 22:00:00";
after = [ "network-online.target" ];
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 -! purge"
2020-12-22 00:26:04 +01:00
'';
serviceConfig.Type = "oneshot";
2021-08-13 21:51:28 +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 = [ git neovim ];
script = "${pkgs.neovim}/bin/nvim +PlugUpgrade +PlugUpdate +qa";
serviceConfig.Type = "oneshot";
startAt = "Wed 18:00:00";
after = [ "network-online.target" ];
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 = [ pass-wayland git gitAndTools.pass-git-helper ];
script = "${pkgs.pass-wayland}/bin/pass git push";
serviceConfig.Type = "oneshot";
startAt = "18:00:00";
after = [ "network-online.target" ];
};
2021-06-18 16:26:51 +02:00
# Sync mail using IDLE
systemd.user.services.goimapnotify-ugent = {
description = "Sync UGent mail using IMAP IDLE";
2021-06-18 16:26:51 +02:00
wantedBy = [ "default.target" ];
2022-09-18 18:49:01 +02:00
path = [ goimapnotify pass-wayland isync-oauth2 mu python39 gnupg nix ];
2021-06-18 16:26:51 +02:00
script = ''
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/ugent.conf
2021-06-18 16:26:51 +02:00
'';
2021-06-20 17:24:19 +02:00
serviceConfig = {
ExecStartPre = "/home/coolneng/.local/share/scripts/mail-sync ugent";
2021-06-20 17:24:19 +02:00
Type = "simple";
Restart = "always";
RestartSec = 20;
};
after = [ "network-online.target" ];
2021-06-18 16:26:51 +02:00
};
systemd.user.services.goimapnotify-gmail = {
description = "Sync gmail mail using IMAP IDLE";
wantedBy = [ "default.target" ];
2022-09-18 18:49:01 +02:00
path = [ goimapnotify pass-wayland isync-oauth2 mu ];
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 = {
ExecStartPre = "/home/coolneng/.local/share/scripts/mail-sync gmail";
2021-06-20 17:24:19 +02:00
Type = "simple";
Restart = "always";
2022-04-12 00:33:58 +02:00
RestartSec = 20;
};
after = [ "network-online.target" ];
2022-04-12 00:33:58 +02:00
};
systemd.user.services.goimapnotify-disroot = {
description = "Sync disroot mail using IMAP IDLE";
wantedBy = [ "default.target" ];
2022-09-18 18:49:01 +02:00
path = [ goimapnotify pass-wayland isync-oauth2 mu ];
2022-04-12 00:33:58 +02:00
script = ''
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/disroot.conf
'';
serviceConfig = {
ExecStartPre = "/home/coolneng/.local/share/scripts/mail-sync disroot";
Type = "simple";
Restart = "always";
2021-06-20 17:24:19 +02:00
RestartSec = 20;
};
after = [ "network-online.target" ];
2021-06-18 16:26:51 +02:00
};
# HACK Change home partition permissions for mopidy
systemd.services.chmod-home = {
description = "Change home partition permissions for Mopidy";
wantedBy = [ "default.target" ];
script = "chmod 751 /home/coolneng";
serviceConfig.Type = "oneshot";
after = [ "home-coolneng.mount" ];
before = [ "mopidy.service" "mopidy-scan.service" ];
};
2022-05-02 00:46:17 +02:00
# Push panacea changes to git daily
systemd.user.services.panacea-push = {
description = "Push panacea changes to git";
2022-05-10 23:36:52 +02:00
path = [ pass-wayland git gitAndTools.pass-git-helper ];
script = "${pkgs.git}/bin/git -C /home/coolneng/Projects/panacea push";
2022-05-02 00:46:17 +02:00
serviceConfig.Type = "oneshot";
startAt = "14:00:00";
after = [ "network-online.target" ];
2022-05-02 00:46:17 +02:00
};
2022-06-13 12:21:55 +02:00
# Clean up Mopidy cache monthly
systemd.services.mopidy-cleanup = {
description = "Clean up Mopidy cache monthly";
path = [ coreutils ];
script = "${pkgs.coreutils}/bin/rm -rf /var/lib/mopidy/.cache/*";
serviceConfig.Type = "oneshot";
startAt = "*-*-15 14:00:00";
after = [ "network-online.target" ];
};
# Pull changes from zion daily
systemd.user.services.zion-pull = {
description = "Pull zion changes to git";
path = [ git ];
script = "${pkgs.git}/bin/git -C /home/coolneng/Projects/zion pull";
serviceConfig.Type = "oneshot";
startAt = "10:00:00";
after = [ "network-online.target" ];
};
2020-08-10 23:45:26 +02:00
}