10 lines
208 B
Nix
10 lines
208 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nixpkgs.config.packageOverrides = pkgs: {
|
||
|
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
||
|
inherit pkgs;
|
||
|
};
|
||
|
};
|
||
|
}
|