Push dependencies bumps to git daily

This commit is contained in:
coolneng 2022-05-02 00:46:17 +02:00
parent 674966001b
commit ce676449a6
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 9 additions and 0 deletions

View File

@ -120,4 +120,13 @@ in {
after = [ "home-coolneng.mount" ];
before = [ "mopidy.service" "mopidy-scan.service" ];
};
# Push panacea changes to git daily
systemd.user.services.panacea-push = {
description = "Push panacea changes to git";
path = [ git gitAndTools.pass-git-helper ];
script = "${pkgs.git}/bin/git push";
serviceConfig.Type = "oneshot";
startAt = "14:00:00";
};
}