Use nix channels for nur and dan

This commit is contained in:
Daniel Løvbrøtte Olsen 2020-05-12 13:30:16 +02:00 committed by Daniel Olsen
parent c584b0dda8
commit b8c6036c41
1 changed files with 4 additions and 5 deletions

View File

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