blob: f2688a0dd6226b53f2ef3aa53e740127b81149c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
nixpkgs.config.packageOverrides = pkgs: {
nur = import (builtins.fetchTarball {
url = "https://github.com/nix-community/NUR/archive/master.tar.gz";
}) {
inherit pkgs;
};
};
nix.settings.substituters = [
"https://cache.nixos.org"
"https://pn.cachix.org"
];
}
|