Merge pull request #276 from numtide/joerg-ci

mixin-nix-experimental: fix eval on older nix versions
This commit is contained in:
Jörg Thalheim 2023-10-25 12:05:13 +02:00 committed by GitHub
commit 6e19951bd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,10 +7,9 @@
"cgroups"
# run builds with network access but without fixed-output checksum
"impure-derivations"
] ++ lib.optional (lib.versionOlder (lib.versions.majorMinor config.nix.package.version) "2.18") [
] ++ lib.optional (lib.versionOlder (lib.versions.majorMinor config.nix.package.version) "2.18")
# allows to drop references from filesystem images
"discard-references"
];
"discard-references";
# no longer need to pre-allocate build users for everything
nix.settings.auto-allocate-uids = true;