18 lines
451 B
Nix
18 lines
451 B
Nix
# NOTE: pkgs is unused but there for consistency with nur.nix
|
|
pkgs: final: prev:
|
|
|
|
let
|
|
unstableTarball =
|
|
fetchTarball
|
|
https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz;
|
|
in {
|
|
unstable = import unstableTarball {
|
|
# TODO
|
|
#allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
# "firmwareLinuxNonfree" "microcodeAmd" "microcodeIntel"
|
|
# "steam" "steam-original" "steam-runtime"
|
|
# "discord"
|
|
#];
|
|
};
|
|
}
|