mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
cc4d4a4b91
As `makeDiskImages` always requires a NixOS configuration, we can simplify the code by convering it into a NixOS module. Then we can make it responsible for populating `system.build.diskoImages` and `system.build.diskoImagesScript`.
78 lines
2.3 KiB
Nix
78 lines
2.3 KiB
Nix
{ diskoLib, modulesPath, config, pkgs, lib, ... }:
|
|
|
|
let
|
|
vm_disko = (diskoLib.testLib.prepareDiskoConfig config diskoLib.testLib.devices).disko;
|
|
cfg_ = (lib.evalModules {
|
|
modules = lib.singleton {
|
|
# _file = toString input;
|
|
imports = lib.singleton { disko.devices = vm_disko.devices; };
|
|
options = {
|
|
disko.devices = lib.mkOption {
|
|
type = diskoLib.toplevel;
|
|
};
|
|
disko.testMode = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
};
|
|
};
|
|
};
|
|
}).config;
|
|
disks = lib.attrValues cfg_.disko.devices.disk;
|
|
rootDisk = {
|
|
name = "root";
|
|
file = ''"$tmp"/${(builtins.head disks).name}.qcow2'';
|
|
driveExtraOpts.cache = "writeback";
|
|
driveExtraOpts.werror = "report";
|
|
deviceExtraOpts.bootindex = "1";
|
|
deviceExtraOpts.serial = "root";
|
|
};
|
|
otherDisks = map
|
|
(disk: {
|
|
name = disk.name;
|
|
file = ''"$tmp"/${disk.name}.qcow2'';
|
|
driveExtraOpts.werror = "report";
|
|
})
|
|
(builtins.tail disks);
|
|
|
|
diskoBasedConfiguration = {
|
|
# generated from disko config
|
|
virtualisation.fileSystems = cfg_.disko.devices._config.fileSystems;
|
|
boot = cfg_.disko.devices._config.boot or { };
|
|
swapDevices = cfg_.disko.devices._config.swapDevices or [ ];
|
|
};
|
|
in
|
|
{
|
|
imports = [
|
|
(modulesPath + "/virtualisation/qemu-vm.nix")
|
|
diskoBasedConfiguration
|
|
];
|
|
|
|
disko.testMode = true;
|
|
|
|
disko.imageBuilder.copyNixStore = false;
|
|
disko.imageBuilder.extraConfig = {
|
|
disko.devices = cfg_.disko.devices;
|
|
};
|
|
disko.imageBuilder.imageFormat = "qcow2";
|
|
|
|
virtualisation.useEFIBoot = config.disko.tests.efi;
|
|
virtualisation.memorySize = config.disko.memSize;
|
|
virtualisation.useDefaultFilesystems = false;
|
|
virtualisation.diskImage = null;
|
|
virtualisation.qemu.drives = [ rootDisk ] ++ otherDisks;
|
|
boot.zfs.devNodes = "/dev/disk/by-uuid"; # needed because /dev/disk/by-id is empty in qemu-vms
|
|
boot.zfs.forceImportAll = true;
|
|
|
|
system.build.vmWithDisko = pkgs.writers.writeDashBin "disko-vm" ''
|
|
set -efux
|
|
export tmp=$(mktemp -d)
|
|
trap 'rm -rf "$tmp"' EXIT
|
|
${lib.concatMapStringsSep "\n" (disk: ''
|
|
${pkgs.qemu}/bin/qemu-img create -f qcow2 \
|
|
-b ${config.system.build.diskoImages}/${disk.name}.qcow2 \
|
|
-F qcow2 "$tmp"/${disk.name}.qcow2
|
|
'') disks}
|
|
set +f
|
|
${config.system.build.vm}/bin/run-*-vm
|
|
'';
|
|
}
|