nixos-config/overlays/unstable.nix

18 lines
451 B
Nix
Raw Normal View History

2021-08-24 09:36:15 +00:00
# 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 {
2021-10-22 12:58:46 +00:00
unstable = import unstableTarball {
# TODO
#allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
# "firmwareLinuxNonfree" "microcodeAmd" "microcodeIntel"
# "steam" "steam-original" "steam-runtime"
# "discord"
#];
};
2021-08-24 09:36:15 +00:00
}