nix-config/overlays/default.nix

10 lines
181 B
Nix
Raw Permalink Normal View History

2024-11-10 17:54:08 -05:00
{ inputs, ... }:
{
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
};
}