1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-24 16:44:52 +03:00
digga/overlays/nixFlakes.nix
2021-02-17 21:18:52 +00:00

13 lines
287 B
Nix

final: prev: {
nixFlakes = prev.nixFlakes.overrideAttrs
(self:
let
oldPatches = self.patches or [ ];
in
{
patches = oldPatches ++ [
../pkgs/tools/package-management/nix/0001-nix-command-and-flakes-by-default.patch
];
});
}