diff options
author | regnat <rg@regnat.ovh> | 2021-12-14 09:15:24 +0100 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2021-12-14 09:15:24 +0100 |
commit | bb8a53ab08c43425c6073aff5fe34bd5bc93dd13 (patch) | |
tree | b3cc319bff17e225afa06358f45fc7c9c925ff82 /tests | |
parent | bd628cf3da14b7d3fe0ba00932eb26d545b4b893 (diff) |
Add a test for boolean config options in flakes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/flake-local-settings.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/flake-local-settings.sh b/tests/flake-local-settings.sh index 09f6b4ca8..98ad60174 100644 --- a/tests/flake-local-settings.sh +++ b/tests/flake-local-settings.sh @@ -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; |