blob: c8326e9da038e7139ab6126c5d5ca575dfbcfc46 (
plain)
1
2
3
4
5
6
7
8
9
|
{
nixpkgs.config.packageOverrides = pkgs: {
nur = import (builtins.fetchTarball {
url = "https://github.com/nix-community/NUR/archive/master.tar.gz";
}) {
inherit pkgs;
};
};
}
|