aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2021-12-14 09:15:24 +0100
committerregnat <rg@regnat.ovh>2021-12-14 09:15:24 +0100
commitbb8a53ab08c43425c6073aff5fe34bd5bc93dd13 (patch)
treeb3cc319bff17e225afa06358f45fc7c9c925ff82 /tests
parentbd628cf3da14b7d3fe0ba00932eb26d545b4b893 (diff)
Add a test for boolean config options in flakes
Diffstat (limited to 'tests')
-rw-r--r--tests/flake-local-settings.sh1
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;