1
0
Fork 0
nix-configuration/overlays/pkgs/unstable/default.nix

11 lines
156 B
Nix
Raw Normal View History

2024-12-06 18:04:47 +00:00
{ channels, inputs, ... }:
final: _prev:
2024-12-06 18:04:47 +00:00
{
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
}