NixOS-Config/overlays/unstable/default.nix

8 lines
153 B
Nix
Raw Normal View History

2024-10-12 20:44:05 -04:00
{ config, inputs, ... }:
(final: prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
})