pub-solar-os/overlays/nixFlakes.nix
Timothy DeHerrera 4f44e0dd13
nix: patch nix directly for experimental features
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.
2021-02-17 12:54:41 -07:00

9 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
];
});
}