6.NUR/flake.nix
Jörg Thalheim 4dd0683963
fix flake.nix usage
Maybe the schema was changed but assigning nixpkgs in the current no longer works.
2020-07-06 11:16:45 +01:00

12 lines
198 B
Nix

{
description = "Nix User Repository";
outputs = { self }: {
overlay = final: prev: {
nur = import ./default.nix {
nurpkgs = prev;
pkgs = prev;
};
};
};
}