NixOS-Config/overlays/unstable/default.nix

12 lines
188 B
Nix
Raw Normal View History

2024-10-15 02:40:43 -04:00
{ unstable, ... }:
{
nixpkgs.overlays = [
(final: prev: {
unstable = import unstable {
system = final.system;
config.allowUnfree = true;
};
})
];
}