6.NUR/flake.nix
2020-05-30 12:43:11 +03:00

13 lines
236 B
Nix

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