2021-08-24 09:36:15 +00:00
|
|
|
# NOTE: pkgs is unused but there for consistency with nur.nix
|
2021-10-22 19:42:36 +00:00
|
|
|
{
|
|
|
|
lib, ...
|
|
|
|
}: final: prev:
|
2021-08-24 09:36:15 +00:00
|
|
|
|
|
|
|
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
|
2021-10-22 19:42:36 +00:00
|
|
|
config = {
|
|
|
|
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
|
|
"firmwareLinuxNonfree" "microcodeAmd" "microcodeIntel"
|
|
|
|
"steam" "steam-original" "steam-runtime"
|
|
|
|
"discord"
|
|
|
|
];
|
|
|
|
};
|
2021-10-22 12:58:46 +00:00
|
|
|
};
|
2021-08-24 09:36:15 +00:00
|
|
|
}
|