Files
nix-config/overlays/unstable/default.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

8 lines
135 B
Nix

{ inputs, ... }:
final: _prev: {
unstable = import inputs.nixpkgs {
system = final.system;
config.allowUnfree = true;
};
}