2022-10-26 22:02:49 +00:00
|
|
|
{ pkgs ? import <nixpkgs> {}
|
|
|
|
, mode ? "mount"
|
2022-11-09 22:36:40 +00:00
|
|
|
, flake ? null
|
|
|
|
, flakeAttr ? null
|
|
|
|
, diskoFile ? null
|
2022-10-26 22:02:49 +00:00
|
|
|
, ... }@args:
|
|
|
|
let
|
2022-11-06 06:46:48 +00:00
|
|
|
disko = import ./. { };
|
2022-11-09 22:36:40 +00:00
|
|
|
|
|
|
|
diskFormat = if flake != null then
|
|
|
|
(pkgs.lib.attrByPath [ "diskoConfigurations" flakeAttr ] (builtins.abort "${flakeAttr} does not exist") (builtins.getFlake flake)) args
|
|
|
|
else
|
|
|
|
import diskoFile args;
|
|
|
|
|
2022-10-26 22:02:49 +00:00
|
|
|
diskoEval = if (mode == "create") then
|
|
|
|
disko.createScript diskFormat pkgs
|
|
|
|
else if (mode == "mount") then
|
|
|
|
disko.mountScript diskFormat pkgs
|
2022-11-23 12:28:52 +00:00
|
|
|
else if (mode = "zap_create_mount") then
|
|
|
|
disko.zapCreateMount diskFormat pkgs
|
2022-10-26 22:02:49 +00:00
|
|
|
else
|
|
|
|
builtins.abort "invalid mode"
|
|
|
|
;
|
|
|
|
in diskoEval
|