stylix: colorize and prefix nix-flake-check output

This commit is contained in:
NAHO 2025-01-06 17:58:23 +01:00
parent e88850f9c2
commit 0969c2e792
No known key found for this signature in database
GPG key ID: 229CB671D09B95F5

View file

@ -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 .#{}'
'';
};