Revert "Update Doom Emacs weekly"

This reverts commit b21acadd8e.
This commit is contained in:
coolneng 2022-09-26 16:32:49 +02:00
parent 6556eda0be
commit 44dbce395d
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ let
(div: rec { buildInputs = [ openssl patched-cyrus-sasl-oauth2 zlib ]; });
in {
# Upgrade Doom Emacs weekly
# Upgrade Doom Emacs daily
systemd.user.services.doom-upgrade = {
description = "Upgrade Doom Emacs";
path = [ bash emacs-vterm git coreutils ];
@ -17,7 +17,7 @@ in {
${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom -! upgrade"
'';
serviceConfig.Type = "oneshot";
startAt = "Mon 22:00:00";
startAt = "22:00:00";
after = [ "network-online.target" ];
};