From f4614f2887b26cb7bac31a08986ff41d341a01bf Mon Sep 17 00:00:00 2001 From: kalipso Date: Mon, 16 Mar 2026 20:52:14 +0100 Subject: [PATCH] [modules] do not reference self within modules if it gets included in other flakes 'self' references to that flake, instead of malobeo --- machines/modules/malobeo/gitea_translator.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/modules/malobeo/gitea_translator.nix b/machines/modules/malobeo/gitea_translator.nix index d87b773..2d641da 100644 --- a/machines/modules/malobeo/gitea_translator.nix +++ b/machines/modules/malobeo/gitea_translator.nix @@ -55,7 +55,7 @@ in serviceConfig = { ExecStart = '' - ${pkgs.python3}/bin/python3 ${inputs.self + /scripts/gitea_hydra_server.py} \ + ${pkgs.python3}/bin/python3 ${../../../scripts/gitea_hydra_server.py} \ --baseurl ${cfg.baseurl} \ --owner ${cfg.owner} \ --repo ${cfg.repo} \ @@ -75,4 +75,4 @@ in }; }; }; -} \ No newline at end of file +}