From e057b165e7e90c8f6502e4dafa4b34e7fe19a472 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Wed, 4 Mar 2026 19:04:00 +0100 Subject: [PATCH] added [print statement --- henrovnix_ok/end_script.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/henrovnix_ok/end_script.nix b/henrovnix_ok/end_script.nix index f4d0f79e6..5b17c3c79 100644 --- a/henrovnix_ok/end_script.nix +++ b/henrovnix_ok/end_script.nix @@ -10,6 +10,8 @@ in after = [ "home-manager-activate.service" ]; serviceConfig.Type = "oneshot"; script = '' + echo "Flake root: ${flakeRoot}" >> /tmp/flake_root.log + echo "Script path: ${scriptPath}" >> /tmp/script_path.log ${scriptPath} ''; };