2024-09-14 06:20:53 +00:00
|
|
|
{ config, lib, pkgs, extendModules, diskoLib, ... }:
|
2022-10-23 10:29:30 +00:00
|
|
|
let
|
|
|
|
cfg = config.disko;
|
2024-09-07 16:35:08 +00:00
|
|
|
|
2024-09-07 17:29:33 +00:00
|
|
|
vmVariantWithDisko = extendModules {
|
|
|
|
modules = [
|
|
|
|
./lib/interactive-vm.nix
|
|
|
|
config.disko.tests.extraConfig
|
|
|
|
];
|
2024-09-07 16:35:08 +00:00
|
|
|
};
|
2023-02-06 14:24:34 +00:00
|
|
|
in
|
|
|
|
{
|
2024-09-14 06:20:53 +00:00
|
|
|
imports = [ ./lib/make-disk-image.nix ];
|
|
|
|
|
2022-10-23 10:29:30 +00:00
|
|
|
options.disko = {
|
2024-09-14 06:20:53 +00:00
|
|
|
imageBuilder = {
|
|
|
|
qemu = lib.mkOption {
|
|
|
|
type = lib.types.nullOr lib.types.str;
|
|
|
|
description = ''
|
|
|
|
the qemu emulator string used when building disk images via make-disk-image.nix.
|
|
|
|
Useful when using binfmt on your build host, and wanting to build disk
|
|
|
|
images for a foreign architecture
|
|
|
|
'';
|
|
|
|
default = null;
|
|
|
|
example = lib.literalExpression "\${pkgs.qemu_kvm}/bin/qemu-system-aarch64";
|
|
|
|
};
|
|
|
|
|
|
|
|
pkgs = lib.mkOption {
|
|
|
|
type = lib.types.attrs;
|
|
|
|
description = ''
|
|
|
|
the pkgs instance used when building disk images via make-disk-image.nix.
|
|
|
|
Useful when the config's kernel won't boot in the image-builder.
|
|
|
|
'';
|
|
|
|
default = pkgs;
|
|
|
|
defaultText = lib.literalExpression "pkgs";
|
|
|
|
example = lib.literalExpression "pkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
kernelPackages = lib.mkOption {
|
|
|
|
type = lib.types.attrs;
|
|
|
|
description = ''
|
|
|
|
the kernel used when building disk images via make-disk-image.nix.
|
|
|
|
Useful when the config's kernel won't boot in the image-builder.
|
|
|
|
'';
|
|
|
|
default = config.boot.kernelPackages;
|
|
|
|
defaultText = lib.literalExpression "config.boot.kernelPackages";
|
|
|
|
example = lib.literalExpression "pkgs.linuxPackages_testing";
|
|
|
|
};
|
|
|
|
|
|
|
|
extraRootModules = lib.mkOption {
|
|
|
|
type = lib.types.listOf lib.types.str;
|
|
|
|
description = ''
|
|
|
|
extra kernel modules to pass to the vmTools.runCommand invocation in the make-disk-image.nix builder
|
|
|
|
'';
|
|
|
|
default = [ ];
|
|
|
|
example = [ "bcachefs" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
extraPostVM = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = ''
|
|
|
|
extra shell code to execute once the disk image(s) have been succesfully created and moved to $out
|
|
|
|
'';
|
|
|
|
default = "";
|
|
|
|
example = lib.literalExpression ''
|
|
|
|
''${pkgs.zstd}/bin/zstd --compress $out/*raw
|
|
|
|
rm $out/*raw
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
extraDependencies = lib.mkOption {
|
|
|
|
type = lib.types.listOf lib.types.package;
|
|
|
|
description = ''
|
|
|
|
list of extra packages to make available in the make-disk-image.nix VM builder, an example might be f2fs-tools
|
|
|
|
'';
|
|
|
|
default = [ ];
|
|
|
|
};
|
|
|
|
|
|
|
|
name = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "name for the disk images";
|
|
|
|
default = "${config.networking.hostName}-disko-images";
|
|
|
|
};
|
|
|
|
|
|
|
|
copyNixStore = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
|
|
|
description = "whether to copy the nix store into the disk images we just created";
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
Extra NixOS config for your test. Can be used to specify a different luks key for tests.
|
|
|
|
A dummy key is in /tmp/secret.key
|
|
|
|
'';
|
|
|
|
default = { };
|
|
|
|
};
|
|
|
|
|
|
|
|
imageFormat = lib.mkOption {
|
|
|
|
type = lib.types.enum [ "raw" "qcow2" ];
|
|
|
|
description = "QEMU image format to use for the disk images";
|
|
|
|
default = "raw";
|
|
|
|
};
|
2024-05-19 12:11:09 +00:00
|
|
|
};
|
2024-09-14 06:20:53 +00:00
|
|
|
|
2023-12-12 22:47:37 +00:00
|
|
|
memSize = lib.mkOption {
|
|
|
|
type = lib.types.int;
|
|
|
|
description = ''
|
|
|
|
size of the memory passed to runInLinuxVM, in megabytes
|
|
|
|
'';
|
|
|
|
default = 1024;
|
|
|
|
};
|
2024-09-14 06:20:53 +00:00
|
|
|
|
2022-10-23 10:29:30 +00:00
|
|
|
devices = lib.mkOption {
|
2023-07-13 13:08:20 +00:00
|
|
|
type = diskoLib.toplevel;
|
2023-02-06 14:24:34 +00:00
|
|
|
default = { };
|
2023-01-03 18:52:57 +00:00
|
|
|
description = "The devices to set up";
|
2022-10-23 10:29:30 +00:00
|
|
|
};
|
2024-09-14 06:20:53 +00:00
|
|
|
|
2023-01-24 14:57:17 +00:00
|
|
|
rootMountPoint = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
default = "/mnt";
|
|
|
|
description = "Where the device tree should be mounted by the mountScript";
|
|
|
|
};
|
2024-09-14 06:20:53 +00:00
|
|
|
|
2022-10-23 10:29:30 +00:00
|
|
|
enableConfig = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
configure nixos with the specified devices
|
|
|
|
should be true if the system is booted with those devices
|
|
|
|
should be false on an installer image etc.
|
|
|
|
'';
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = true;
|
|
|
|
};
|
2024-09-14 06:20:53 +00:00
|
|
|
|
2023-01-30 20:36:51 +00:00
|
|
|
checkScripts = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
Whether to run shellcheck on script outputs
|
|
|
|
'';
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = false;
|
|
|
|
};
|
2024-09-14 06:20:53 +00:00
|
|
|
|
2024-07-21 14:45:14 +00:00
|
|
|
testMode = lib.mkOption {
|
|
|
|
internal = true;
|
|
|
|
description = ''
|
|
|
|
this is true if the system is being run in test mode.
|
|
|
|
like a vm test or an interactive vm
|
|
|
|
'';
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = false;
|
|
|
|
};
|
2024-09-14 06:20:53 +00:00
|
|
|
|
2023-07-20 16:32:47 +00:00
|
|
|
tests = {
|
|
|
|
efi = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
Whether efi is enabled for the `system.build.installTest`.
|
|
|
|
We try to automatically detect efi based on the configured bootloader.
|
|
|
|
'';
|
|
|
|
type = lib.types.bool;
|
2023-10-13 17:52:29 +00:00
|
|
|
defaultText = "config.boot.loader.systemd-boot.enable || config.boot.loader.grub.efiSupport";
|
2023-07-20 16:32:47 +00:00
|
|
|
default = config.boot.loader.systemd-boot.enable || config.boot.loader.grub.efiSupport;
|
|
|
|
};
|
2024-09-14 06:20:53 +00:00
|
|
|
|
2023-09-02 09:01:41 +00:00
|
|
|
extraChecks = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
extra checks to run in the `system.build.installTest`.
|
|
|
|
'';
|
|
|
|
type = lib.types.lines;
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
machine.succeed("test -e /var/secrets/my.secret")
|
|
|
|
'';
|
|
|
|
};
|
2024-09-14 06:20:53 +00:00
|
|
|
|
2023-08-07 17:18:05 +00:00
|
|
|
extraConfig = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
Extra NixOS config for your test. Can be used to specify a different luks key for tests.
|
|
|
|
A dummy key is in /tmp/secret.key
|
|
|
|
'';
|
2023-09-15 05:56:40 +00:00
|
|
|
default = { };
|
2023-08-07 17:18:05 +00:00
|
|
|
};
|
2023-07-20 16:32:47 +00:00
|
|
|
};
|
2022-10-23 10:29:30 +00:00
|
|
|
};
|
2024-09-07 16:35:08 +00:00
|
|
|
|
|
|
|
options.virtualisation.vmVariantWithDisko = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
Machine configuration to be added for the vm script available at `.system.build.vmWithDisko`.
|
|
|
|
'';
|
|
|
|
inherit (vmVariantWithDisko) type;
|
|
|
|
default = {};
|
|
|
|
visible = "shallow";
|
|
|
|
};
|
|
|
|
|
2024-09-14 06:20:53 +00:00
|
|
|
config = lib.mkMerge [
|
|
|
|
(lib.mkIf (cfg.devices.disk != { }) {
|
|
|
|
system.build = (cfg.devices._scripts { inherit pkgs; checked = cfg.checkScripts; }) // {
|
2022-11-23 12:29:51 +00:00
|
|
|
|
2024-09-14 06:20:53 +00:00
|
|
|
# we keep these old outputs for compatibility
|
|
|
|
disko = builtins.trace "the .disko output is deprecated, please use .diskoScript instead" (cfg.devices._scripts { inherit pkgs; }).diskoScript;
|
|
|
|
diskoNoDeps = builtins.trace "the .diskoNoDeps output is deprecated, please use .diskoScriptNoDeps instead" (cfg.devices._scripts { inherit pkgs; }).diskoScriptNoDeps;
|
2023-07-20 16:32:47 +00:00
|
|
|
|
2024-09-14 06:20:53 +00:00
|
|
|
installTest = diskoLib.testLib.makeDiskoTest {
|
|
|
|
inherit extendModules pkgs;
|
|
|
|
name = "${config.networking.hostName}-disko";
|
|
|
|
disko-config = builtins.removeAttrs config [ "_module" ];
|
|
|
|
testMode = "direct";
|
|
|
|
efi = cfg.tests.efi;
|
|
|
|
extraSystemConfig = cfg.tests.extraConfig;
|
|
|
|
extraTestScript = cfg.tests.extraChecks;
|
|
|
|
};
|
2023-09-10 12:48:41 +00:00
|
|
|
|
2024-09-14 06:20:53 +00:00
|
|
|
vmWithDisko = lib.mkDefault config.virtualisation.vmVariantWithDisko.system.build.vmWithDisko;
|
2023-07-20 16:32:47 +00:00
|
|
|
};
|
2024-07-21 14:45:14 +00:00
|
|
|
|
2022-11-27 15:50:43 +00:00
|
|
|
|
2024-09-14 06:20:53 +00:00
|
|
|
# we need to specify the keys here, so we don't get an infinite recursion error
|
|
|
|
# Remember to add config keys here if they are added to types
|
|
|
|
fileSystems = lib.mkIf cfg.enableConfig cfg.devices._config.fileSystems or { };
|
|
|
|
boot = lib.mkIf cfg.enableConfig cfg.devices._config.boot or { };
|
|
|
|
swapDevices = lib.mkIf cfg.enableConfig cfg.devices._config.swapDevices or [ ];
|
|
|
|
})
|
|
|
|
{
|
|
|
|
_module.args.diskoLib = import ./lib {
|
|
|
|
inherit lib;
|
|
|
|
rootMountPoint = config.disko.rootMountPoint;
|
|
|
|
makeTest = import (pkgs.path + "/nixos/tests/make-test-python.nix");
|
|
|
|
eval-config = import (pkgs.path + "/nixos/lib/eval-config.nix");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
2022-10-23 10:29:30 +00:00
|
|
|
}
|