Files
nix-config/overlays/default.nix
2024-05-05 14:03:16 -05:00

11 lines
180 B
Nix

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