aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThéophane Hufschmitt <regnat@users.noreply.github.com>2021-12-14 10:35:37 +0100
committerGitHub <noreply@github.com>2021-12-14 10:35:37 +0100
commit8868da45a87699d6a0791a11a1a83d8a2c78cb24 (patch)
treea49c574151e714ecfc689f9f79afde19247540b2 /tests
parent99d617bcde8d1639f9eb86e9310274aee0b7c8c9 (diff)
parentbb8a53ab08c43425c6073aff5fe34bd5bc93dd13 (diff)
Merge pull request #5623 from yorickvP/fix-5621
flakes: fix boolean and int nixConfig values
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;