mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
2890a8c922
fixes an error when using this minimal configuration: ```nix let pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11") { }; disko = fetchTarball "https://github.com/nix-community/disko/tarball/master"; in pkgs.nixos { imports = [ "${disko}/module.nix" "${disko}/example/hybrid.nix" ]; } ``` when running: ```console $ nix-build ... error: 'default' at /nix/store/y981rwszq9yi36rvvz2vrr6hb22si0hc-source/lib/default.nix:391:23 called with unexpected argument 'system' ```
122 lines
4.2 KiB
Nix
122 lines
4.2 KiB
Nix
{ config, lib, pkgs, extendModules, ... }@args:
|
|
let
|
|
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");
|
|
};
|
|
cfg = config.disko;
|
|
in
|
|
{
|
|
options.disko = {
|
|
extraRootModules = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
description = ''
|
|
extra modules to pass to the vmTools.runCommand invocation in the make-disk-image.nix builder
|
|
'';
|
|
default = [ ];
|
|
};
|
|
memSize = lib.mkOption {
|
|
type = lib.types.int;
|
|
description = ''
|
|
size of the memory passed to runInLinuxVM, in megabytes
|
|
'';
|
|
default = 1024;
|
|
};
|
|
devices = lib.mkOption {
|
|
type = diskoLib.toplevel;
|
|
default = { };
|
|
description = "The devices to set up";
|
|
};
|
|
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 = [ ];
|
|
};
|
|
rootMountPoint = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "/mnt";
|
|
description = "Where the device tree should be mounted by the mountScript";
|
|
};
|
|
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;
|
|
};
|
|
checkScripts = lib.mkOption {
|
|
description = ''
|
|
Whether to run shellcheck on script outputs
|
|
'';
|
|
type = lib.types.bool;
|
|
default = false;
|
|
};
|
|
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;
|
|
defaultText = "config.boot.loader.systemd-boot.enable || config.boot.loader.grub.efiSupport";
|
|
default = config.boot.loader.systemd-boot.enable || config.boot.loader.grub.efiSupport;
|
|
};
|
|
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")
|
|
'';
|
|
};
|
|
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 = { };
|
|
};
|
|
};
|
|
};
|
|
config = lib.mkIf (cfg.devices.disk != { }) {
|
|
system.build = (cfg.devices._scripts { inherit pkgs; checked = cfg.checkScripts; }) // {
|
|
|
|
# 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;
|
|
|
|
diskoImages = diskoLib.makeDiskImages {
|
|
nixosConfig = args;
|
|
};
|
|
diskoImagesScript = diskoLib.makeDiskImagesScript {
|
|
nixosConfig = args;
|
|
};
|
|
|
|
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;
|
|
};
|
|
};
|
|
|
|
|
|
# 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 [ ];
|
|
};
|
|
}
|