about summary refs log tree commit diff
path: root/modules/nur.nix
blob: a4c34498e106bc911cb3ecb4b9359d457c3d9f2e (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.binaryCaches = [
    "https://cache.nixos.org"
    "https://pn.cachix.org"
  ];
}