From dd7781a511f61ce440d9a62ea6965143a65e5205 Mon Sep 17 00:00:00 2001 From: sadan <117494111+sadan4@users.noreply.github.com> Date: Tue, 24 Jun 2025 14:04:29 -0400 Subject: [PATCH] remove debugging traces --- common/users/homeModules/scripts/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/common/users/homeModules/scripts/default.nix b/common/users/homeModules/scripts/default.nix index fc7e02f..eb95884 100644 --- a/common/users/homeModules/scripts/default.nix +++ b/common/users/homeModules/scripts/default.nix @@ -16,8 +16,7 @@ let }: let text = '' - export PATH="${builtins.trace (lib.makeSearchPath "bin" env) (lib.makeSearchPath "bin" env)}"; - echo bar; + export PATH="${lib.makeSearchPath "bin" env}"; exec ${pkgs.bash}/bin/bash ${file} $@ ''; @@ -26,7 +25,7 @@ let name = "${name}-${version}"; executable = true; destination = "/bin/${name}"; - text = builtins.trace text text; + inherit text; }; paste = mkScript { name = "paste";