From f3b9ee96f299f1f4bbcb793e2be2c6f6928b6a93 Mon Sep 17 00:00:00 2001 From: Tomo <68489118+tomodachi94@users.noreply.github.com> Date: Fri, 26 Apr 2024 10:29:51 -0700 Subject: [PATCH] justfile: allow unfree, misc improvements https://just.systems/man/en/chapter_42.html --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index 228fd44..766403d 100644 --- a/justfile +++ b/justfile @@ -13,6 +13,7 @@ build *args: update input_name="": #!/usr/bin/env sh + set -euxo pipefail if [ -n "{{input_name}}" ]; then nix flake lock --update-input "{{input_name}}" else @@ -30,6 +31,9 @@ format: treefmt check-flake-outputs: + #!/usr/bin/env sh + set -euxo pipefail + export NIXPKGS_ALLOW_UNFREE=1 nix flake check --all-systems --verbose ci: check-flake-outputs