mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
4cec81a995
Breaks evaluation of all nixos tests, and is therefore a channel blocker.
20 lines
450 B
Nix
20 lines
450 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
options = {
|
|
oci = {
|
|
efi = lib.mkOption {
|
|
default = true;
|
|
internal = true;
|
|
description = ''
|
|
Whether the OCI instance is using EFI.
|
|
'';
|
|
};
|
|
diskSize = lib.mkOption {
|
|
type = lib.types.int;
|
|
default = 8192;
|
|
description = "Size of the disk image created in MB.";
|
|
example = "diskSize = 12 * 1024; # 12GiB";
|
|
};
|
|
};
|
|
};
|
|
}
|