Use nix channels for nur and dan
This commit is contained in:
parent
c584b0dda8
commit
b8c6036c41
|
@ -1,19 +1,18 @@
|
|||
let
|
||||
unstable = import <nixos-unstable> { };
|
||||
stable = import <nixos> {};
|
||||
nur = import <nur> { pkgs = unstable; };
|
||||
in
|
||||
{
|
||||
allowUnfree = true;
|
||||
|
||||
packageOverrides = pkgs: {
|
||||
unstable = unstable;
|
||||
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
||||
nur = nur;
|
||||
dan = import <dan> {
|
||||
pkgs = unstable;
|
||||
};
|
||||
dan = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") {
|
||||
pkgs = unstable;
|
||||
};
|
||||
danstable = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") {
|
||||
danstable = <dan> {
|
||||
pkgs = stable;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue