From a2c0337baed4f78b666a6dfffc3d26e6232e9eb7 Mon Sep 17 00:00:00 2001 From: coolneng Date: Tue, 10 May 2022 23:36:52 +0200 Subject: [PATCH] Fix panacea-push service --- modules/periodic.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/periodic.nix b/modules/periodic.nix index 09f0d09..a9edc9e 100644 --- a/modules/periodic.nix +++ b/modules/periodic.nix @@ -124,8 +124,8 @@ in { # 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"; + path = [ pass-wayland git gitAndTools.pass-git-helper ]; + script = "${pkgs.git}/bin/git -C /home/coolneng/Projects/panacea push"; serviceConfig.Type = "oneshot"; startAt = "14:00:00"; };