mirror of
https://github.com/divnix/digga.git
synced 2024-12-24 16:44:52 +03:00
13 lines
287 B
Nix
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
|
|
];
|
|
});
|
|
}
|