mirror of
https://github.com/nix-community/disko
synced 2024-11-09 22:04:14 +00:00
daca7be309
This adds new outpus like `format` and `formatNoDeps` which are compatible with `nix run` so you can do something like nix run .#nixosConfigurations.myhostname.config.system.build.formatNoDeps as originally intended in #78, or add disko to your configuration like environment.systemPackages = [ config.system.build.format config.system.build.mount config.system.build.destroyFormatMount ]; as mentioned in #454. Fixes part of #454 Supersedes #78 It also deprecates mode `disko` in favor of the clearer `destroy,format,mount` and adds `format,mount` to allow easier in-place updates.
78 lines
2 KiB
Nix
78 lines
2 KiB
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, lib ? pkgs.lib
|
|
, mode ? "mount"
|
|
, flake ? null
|
|
, flakeAttr ? null
|
|
, diskoFile ? null
|
|
, rootMountPoint ? "/mnt"
|
|
, noDeps ? false
|
|
, ...
|
|
}@args:
|
|
let
|
|
disko = import ./. {
|
|
inherit rootMountPoint;
|
|
inherit lib;
|
|
};
|
|
|
|
diskoAttr =
|
|
if noDeps then
|
|
{
|
|
destroy = "_cliDestroyNoDeps";
|
|
format = "_cliFormatNoDeps";
|
|
mount = "_cliMountNoDeps";
|
|
|
|
"format,mount" = "_cliFormatMountNoDeps";
|
|
"destroy,format,mount" = "_cliDestroyFormatMountNoDeps";
|
|
|
|
# legacy aliases
|
|
disko = "diskoScriptNoDeps";
|
|
create = "createScriptNoDeps";
|
|
zap_create_mount = "diskoScriptNoDeps";
|
|
}.${mode}
|
|
else
|
|
{
|
|
destroy = "_cliDestroy";
|
|
format = "_cliFormat";
|
|
mount = "_cliMount";
|
|
|
|
"format,mount" = "_cliFormatMount";
|
|
"destroy,format,mount" = "_cliDestroyFormatMount";
|
|
|
|
# legacy aliases
|
|
disko = "diskoScript";
|
|
create = "createScript";
|
|
zap_create_mount = "diskoScript";
|
|
}.${mode};
|
|
|
|
hasDiskoConfigFlake =
|
|
diskoFile != null || lib.hasAttrByPath [ "diskoConfigurations" flakeAttr ] (builtins.getFlake flake);
|
|
|
|
hasDiskoModuleFlake =
|
|
lib.hasAttrByPath [ "nixosConfigurations" flakeAttr "config" "disko" "devices" ] (builtins.getFlake flake);
|
|
|
|
diskFormat =
|
|
let
|
|
diskoConfig =
|
|
if diskoFile != null then
|
|
import diskoFile
|
|
else
|
|
(builtins.getFlake flake).diskoConfigurations.${flakeAttr};
|
|
in
|
|
if builtins.isFunction diskoConfig then
|
|
diskoConfig ({ inherit lib; } // args)
|
|
else
|
|
diskoConfig;
|
|
|
|
diskoEval =
|
|
disko.${diskoAttr} diskFormat pkgs;
|
|
|
|
diskoScript =
|
|
if hasDiskoConfigFlake then
|
|
diskoEval
|
|
else if (lib.traceValSeq hasDiskoModuleFlake) then
|
|
(builtins.getFlake flake).nixosConfigurations.${flakeAttr}.config.system.build.${diskoAttr}
|
|
else
|
|
(builtins.abort "couldn't find `diskoConfigurations.${flakeAttr}` or `nixosConfigurations.${flakeAttr}.config.disko.devices`");
|
|
|
|
in
|
|
diskoScript
|