mirror of
https://github.com/NiklasGollenstede/nixos-installer.git
synced 2024-11-22 07:53:28 +01:00
67 lines
4.0 KiB
Markdown
67 lines
4.0 KiB
Markdown
/*
|
|
|
|
# NixOS Installer Composition
|
|
|
|
This module allows for the composition of the installer from multiple script, which can be overridden for specific projects and be adjusted per host.
|
|
`writeSystemScripts` in [`../lib/nixos.nix`](../lib/nixos.nix) wraps the result such that the commands can be called from the command line, with options, arguments, and help output.
|
|
`mkSystemsFlake` exposes the individual host's installers as flake `apps`.
|
|
|
|
|
|
## Implementation
|
|
|
|
```nix
|
|
#*/# end of MarkDown, beginning of NixOS module:
|
|
dirname: inputs: moduleArgs@{ config, options, pkgs, lib, ... }: let lib = inputs.self.lib.__internal__; in let
|
|
inherit (inputs.config.rename) installer;
|
|
cfg = config.${installer};
|
|
in {
|
|
|
|
options = { ${installer} = {
|
|
scripts = lib.mkOption {
|
|
description = ''
|
|
Attrset of bash scripts defining functions that do installation and maintenance operations.
|
|
The functions should expect the bash options `pipefail` and `nounset` (`-u`) to be set.
|
|
See »./setup-scripts/README.md« for more information.
|
|
'';
|
|
type = lib.types.attrsOf (lib.types.nullOr (lib.types.submodule ({ name, config, ... }: { options = {
|
|
name = lib.mkOption { description = "Symbolic name of the script."; type = lib.types.str; default = name; readOnly = true; };
|
|
path = lib.mkOption { description = "Path of file for ».text« to be loaded from."; type = lib.types.nullOr lib.types.path; default = null; };
|
|
text = lib.mkOption { description = "Script text to process."; type = lib.types.str; default = builtins.readFile config.path; };
|
|
order = lib.mkOption { description = "Inclusion order of the scripts. Higher orders will be sourced later, and can thus overwrite earlier definitions."; type = lib.types.int; default = 1000; };
|
|
}; })));
|
|
apply = lib.filterAttrs (k: v: v != null);
|
|
};
|
|
commands = let cmdOpt = when: mounted: lib.mkOption { description = ''
|
|
Bash commands that are executed during the system installation, ${when}.
|
|
Note that these commands are executed without any further sandboxing (i.e. when not using the VM installation mode, as root on the host).
|
|
Partitions may be used via `/dev/disk/by-partlabel/`.${lib.optionalString mounted '' The target system is mounted at `$mnt`.''}
|
|
''; type = lib.types.lines; default = ""; }; in {
|
|
prepareInstaller = cmdOpt "early during preparation of the installer (right after CLI parsing)" false;
|
|
postPartition = cmdOpt "after partitioning the disks" false;
|
|
postFormat = cmdOpt "after formatting the partitions with filesystems" false;
|
|
postMount = cmdOpt "after mounting all filesystems" true;
|
|
preInstall = cmdOpt "before installing the bootloader" true;
|
|
postInstall = cmdOpt "just before unmounting the new system" true;
|
|
};
|
|
outputName = lib.mkOption {
|
|
description = ''The name this system is (/ should be) exported as by its defining flake (as »nixosConfigurations.''${outputName}« and »apps.*-linux.''${outputName}«).'';
|
|
type = lib.types.nullOr lib.types.str; default = null;
|
|
};
|
|
build.scripts = lib.mkOption {
|
|
type = lib.types.anything; internal = true;
|
|
default = lib.fun.substituteImplicit { # This replaces the `@{}` references in the scripts with normal bash variables that hold serializations of the Nix values they refer to.
|
|
inherit pkgs; scripts = lib.sort (a: b: a.order < b.order) (lib.attrValues cfg.scripts);
|
|
context = { inherit config options pkgs; inherit (moduleArgs) inputs; } // { native = pkgs; };
|
|
# inherit (builtins) trace;
|
|
};
|
|
};
|
|
}; };
|
|
|
|
config = {
|
|
${installer} = {
|
|
scripts = lib.mapAttrs (name: path: lib.mkOptionDefault { inherit path; order = 750; }) (lib.self.setup-scripts);
|
|
};
|
|
};
|
|
|
|
}
|