make nur and dan use unstable

This commit is contained in:
Daniel Løvbrøtte Olsen 2019-11-02 12:04:54 +01:00
parent 230b67e63f
commit 6119c0e52a
1 changed files with 5 additions and 3 deletions

View File

@ -1,14 +1,16 @@
let unstable = import <nixos-unstable> { }; in
{ {
allowUnfree = true; allowUnfree = true;
oraclejdk.accept_license = true; oraclejdk.accept_license = true;
packageOverrides = pkgs: { packageOverrides = pkgs: {
unstable = import <nixos-unstable> { }; unstable = unstable;
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs; pkgs = unstable;
}; };
dan = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") { dan = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") {
inherit pkgs; pkgs = unstable;
}; };
}; };
} }