4f44e0dd13
The bash wrapper was causing issues with deploy-rs and the experimental-features option in the config was causing hercules-ci to spit out a bunch of junk in the logs. Patching nix with the default values required for flakes fixes both of these issues.
8 lines
198 B
Nix
8 lines
198 B
Nix
final: prev: {
|
|
nixFlakes = prev.nixFlakes.overrideAttrs
|
|
(self: {
|
|
patches = [
|
|
../pkgs/tools/package-management/nix/0001-nix-command-and-flakes-by-default.patch
|
|
];
|
|
});
|
|
}
|