overlays: break apart overlays

This commit is contained in:
Primrose 2025-05-25 12:24:12 +02:00
parent 8c3605ef9d
commit fb0fc8e911
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
12 changed files with 25 additions and 40 deletions

8
nix/overlays/disko.nix Normal file
View file

@ -0,0 +1,8 @@
let
sources = import ../sources.nix;
in
final: _: {
disko =
final.callPackage (sources.disko + "/package.nix")
{diskoVersion = sources.disko.version;};
}