chore(flake): set abort-on-warn

This commit is contained in:
Defelo 2025-11-04 15:49:40 +01:00
commit 5ddeaec8d2
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View file

@ -51,6 +51,7 @@ runs:
with:
# Putting build-dir in /nix is a workaround for https://github.com/wimpysworld/nothing-but-nix/issues/18
extra_nix_config: |
accept-flake-config = true
build-dir = /nix/build
sandbox = ${{ inputs.sandbox }}
system = ${{ inputs.system }}

View file

@ -52,5 +52,8 @@
});
};
nixConfig.commit-lock-file-summary = "chore: update flake.lock";
nixConfig = {
abort-on-warn = true;
commit-lock-file-summary = "chore: update flake.lock";
};
}