This commit is contained in:
Cyryl Płotnicki 2021-03-17 17:40:16 +00:00
parent 0172a7a844
commit eea4fb44b7

View file

@ -2,6 +2,7 @@
let
unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz;
nurTarball = fetchTarball https://github.com/nix-community/NUR/archive/master.tar.gz;
in
{
imports =
@ -22,6 +23,9 @@ in
unstable = import unstableTarball {
config = config.nixpkgs.config;
};
nur = import nurTarball {
inherit pkgs;
};
};
};