Allow insecure nix on franz

This commit is contained in:
GHOSCHT 2024-03-16 18:21:00 +01:00
parent faa9747d05
commit d0ae7b1f22
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82

View file

@ -16,4 +16,11 @@ in {
source = ../rsc/docker/franz; source = ../rsc/docker/franz;
recursive = true; recursive = true;
}; };
nixpkgs = {
config = {
permittedInsecurePackages = [
"nix-2.15.3"
];
};
};
} }