21 lines
601 B
Nix
21 lines
601 B
Nix
let
|
|
unstable = import <nixos-unstable> { };
|
|
stable = import <nixos> {};
|
|
in
|
|
{
|
|
allowUnfree = true;
|
|
|
|
packageOverrides = pkgs: {
|
|
unstable = unstable;
|
|
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
|
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") {
|
|
pkgs = stable;
|
|
};
|
|
};
|
|
}
|