From 89d4b0ae0b44043f2b119052ed4f2b4e09647bfc Mon Sep 17 00:00:00 2001 From: Colin Date: Sun, 31 Mar 2024 04:47:14 +0000 Subject: [PATCH] s6-rc: don't tee to /dev/stderr, as i don't want any logs going to the console and interfering with text entry --- modules/users/s6-rc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/users/s6-rc.nix b/modules/users/s6-rc.nix index c99060fc..aa22af64 100644 --- a/modules/users/s6-rc.nix +++ b/modules/users/s6-rc.nix @@ -337,7 +337,7 @@ in } function startS6WithLogging() { mkdir -p "${logBase}" #< needs to exist for parallel s6-log call - startS6 2>&1 | tee /dev/stderr | s6-log -- T "${logBase}/catchall" + startS6 2>&1 | s6-log -- T "${logBase}/catchall" } primarySessionCommands+=('startS6WithLogging &')