1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-25 00:55:08 +03:00
digga/overlays/nixFlakes.nix

13 lines
287 B
Nix
Raw Normal View History

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