Restructure flake

This commit is contained in:
2025-04-22 20:48:18 +02:00
parent 459c6ac27e
commit 07a321c79a
2 changed files with 116 additions and 67 deletions

16
overlays/default.nix Normal file
View File

@ -0,0 +1,16 @@
{
inputs,
outputs,
}:
{
nixpkgs-stable-unstable = final: prev: {
unstable = import inputs.nixpkgs {
system = prev.system;
config.allowUnfree = true;
};
stable = import inputs.nixpkgs-stable {
system = prev.system;
config.allowUnfree = true;
};
};
}