blob: 9f804c895972185d9e0b29d1ff698add0cb325f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
nixpkgs = {
config.allowUnfree = true;
overlays = [ (final: prev: {
unstable = import self.inputs.nixpkgs-unstable { system = system;
config.allowUnfree = true;
};
})
];
};
}
|