diff --git a/nix/modules/hive-c0re.nix b/nix/modules/hive-c0re.nix index 0f2badb..9852d4a 100644 --- a/nix/modules/hive-c0re.nix +++ b/nix/modules/hive-c0re.nix @@ -57,7 +57,10 @@ in systemd.services.hive-c0re = { description = "hyperhive coordinator daemon"; wantedBy = [ "multi-user.target" ]; - path = [ "/run/current-system/sw" ]; + path = [ + pkgs.git + "/run/current-system/sw" + ]; serviceConfig = { ExecStart = "${cfg.package}/bin/hive-c0re --socket /run/hyperhive/host.sock serve --hyperhive-flake ${cfg.hyperhiveFlake} --dashboard-port ${toString cfg.dashboardPort}"; Restart = "on-failure";