Use nix channels for nur and dan
This commit is contained in:
parent
c584b0dda8
commit
b8c6036c41
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue