mirror of
https://github.com/nix-community/disko.git
synced 2026-01-14 18:28:45 +01:00
This requires a lot of restructuring. The .nix files have to be bundled together with the python files, so they need to follow python's module system structure. I ran `nix-fast-build --no-link -j 2 --eval-workers 3 --flake .#checks` and it succeeded, so I'm reasonably confident I changed everything as required.
8 lines
203 B
Nix
8 lines
203 B
Nix
{ lib ? import <nixpkgs/lib>
|
|
, rootMountPoint ? "/mnt"
|
|
, checked ? false
|
|
, diskoLib ? import ./src/disko_lib { inherit lib rootMountPoint; }
|
|
}:
|
|
diskoLib.outputs {
|
|
inherit lib checked rootMountPoint;
|
|
}
|