From 78d66a8b09726822b605bc8e7248116cb4ef97ef Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 20 Jun 2024 11:52:35 +0000 Subject: [PATCH] ols: pipe stderr > stdout --- hosts/common/programs/ols.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/common/programs/ols.nix b/hosts/common/programs/ols.nix index 024cb58c..6b3360d5 100644 --- a/hosts/common/programs/ols.nix +++ b/hosts/common/programs/ols.nix @@ -18,7 +18,7 @@ services.ols = { description = "ols: Offline Location Service"; - command = "ols"; + command = "ols 2>&1"; # XXX: it logs to stderr, and my s6 infrastructure apparently doesn't handle that partOf = [ "graphical-session" ]; }; };