1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 10:11:47 +02:00

Merge pull request #5623 from yorickvP/fix-5621

flakes: fix boolean and int nixConfig values
This commit is contained in:
Théophane Hufschmitt 2021-12-14 10:35:37 +01:00 committed by GitHub
commit 8868da45a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View file

@ -18,6 +18,7 @@ chmod +x echoing-post-hook.sh
cat <<EOF > flake.nix
{
nixConfig.post-build-hook = "$PWD/echoing-post-hook.sh";
nixConfig.allow-dirty = false; # See #5621
outputs = a: {
defaultPackage.$system = import ./simple.nix;