mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-12 16:10:03 +01:00
14 lines
279 B
Nix
14 lines
279 B
Nix
# usage: nix-instantiate --eval --json --strict example | jq -r .
|
|
|
|
let
|
|
cfg = import ./config.nix;
|
|
#cfg = import ./config-gpt-bios.nix;
|
|
in
|
|
# TODO: get rid of NIX_PATH dependency here
|
|
with import ../. {};
|
|
|
|
{
|
|
config = config cfg;
|
|
create = create cfg;
|
|
mount = mount cfg;
|
|
}
|