From c4171b56b56285c63438ce25d9f0ddb272df6a0f Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Mon, 10 Nov 2025 23:16:36 -0500 Subject: [PATCH] fixed systemd.nix --- systems/jeeves/services/systemd.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/systems/jeeves/services/systemd.nix b/systems/jeeves/services/systemd.nix index 61862bd..07f8cb7 100644 --- a/systems/jeeves/services/systemd.nix +++ b/systems/jeeves/services/systemd.nix @@ -1,6 +1,6 @@ { pkgs, - self, + inputs, ... }: let @@ -23,12 +23,12 @@ in description = "validates startup"; path = [ pkgs.zfs ]; environment = { - PYTHONPATH = "${self}/"; + PYTHONPATH = "${inputs.self}/"; }; serviceConfig = { EnvironmentFile = "${vars.secrets}/services/server-validation"; Type = "oneshot"; - ExecStart = "${pkgs.my_python}/bin/python -m python.tools.validate_system '${./validate_system.toml}'"; + ExecStart = "${pkgs.my_python}/bin/python -m python.system_tests.validate_system '${./validate_system.toml}'"; }; }; };