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