Complete overhaul of repo structure based on nvix. See https://github.com/niksingh710/nvix Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
12 lines
254 B
Nix
12 lines
254 B
Nix
{ inputs, self, ... }:
|
|
{
|
|
flake.overlays.default = (
|
|
final: prev: {
|
|
stable = import inputs.nixpkgs-stable {
|
|
allowUnfree = true;
|
|
inherit (prev) system;
|
|
overlays = prev.lib.attrValues self.overlays;
|
|
};
|
|
}
|
|
);
|
|
}
|