stockholm/makefu/2configs/nur.nix

12 lines
324 B
Nix
Raw Normal View History

2018-08-06 14:28:17 +00:00
{ pkgs, ... }:{
nixpkgs.config.packageOverrides = pkgs: {
2020-03-13 09:46:05 +00:00
nur = import (builtins.fetchTarball {
url = "https://github.com/nix-community/NUR/archive/7bfd0117b359d0f72d086ff7e1f0ba3aeaf8d91e.tar.gz";
sha256 = "0gb2np1r2m9kkz1s374gxdqrwhkzx48iircy00y6mjr7h14rhyxk";
}
){
inherit pkgs;
};
2018-08-06 14:28:17 +00:00
};
}