From 0969c2e792c942dc95d98381fa389340bbff10bb Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Mon, 6 Jan 2025 17:58:23 +0100 Subject: [PATCH] stylix: colorize and prefix nix-flake-check output --- flake.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index d807371f..8b50695c 100644 --- a/flake.nix +++ b/flake.nix @@ -162,9 +162,13 @@ (($checks - $packages)[] | "checks.${system}.\(.)"), ($packages[] | "packages.${system}.\(.)") ' | - parallel --bar --halt now,fail=1 ' - nix build --no-update-lock-file --verbose .#{} - ' + parallel \ + --bar \ + --color \ + --color-failed \ + --halt now,fail=1 \ + --tagstring '{}' \ + 'nix build --no-update-lock-file --verbose .#{}' ''; };