mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
proxmox-image: add additionalDiskSpace parameter as input to make-disk-image.nix
This commit is contained in:
parent
d784a110b6
commit
f2794786fd
1 changed files with 18 additions and 0 deletions
|
@ -94,6 +94,15 @@ with lib;
|
|||
Expect guest to have qemu agent running
|
||||
'';
|
||||
};
|
||||
|
||||
additionalDiskSize = mkOption {
|
||||
type = types.str;
|
||||
default = "512M";
|
||||
description = lib.mdDoc ''
|
||||
Additional disk space to be added to the image.
|
||||
Defaults to 512M (Megabytes), Suffix can also be specified with `G` (gigabyte) or `K` (kilobyte).
|
||||
'';
|
||||
};
|
||||
};
|
||||
qemuExtraConf = mkOption {
|
||||
type = with types; attrsOf (oneOf [ str int ]);
|
||||
|
@ -117,6 +126,14 @@ with lib;
|
|||
defaultText = lib.literalExpression ''if config.proxmox.qemuConf.bios == "seabios" then "legacy" else "efi"'';
|
||||
example = "hybrid";
|
||||
};
|
||||
additionalDiskSpace = mkOption {
|
||||
type = types.str;
|
||||
default = "512M";
|
||||
description = lib.mdDoc ''
|
||||
Additional disk space to be added to the image.
|
||||
Defaults to 512M (Megabytes), Suffix can also be specified with `G` (gigabyte) or `K` (kilobyte).
|
||||
'';
|
||||
};
|
||||
filenameSuffix = mkOption {
|
||||
type = types.str;
|
||||
default = config.proxmox.qemuConf.name;
|
||||
|
@ -168,6 +185,7 @@ with lib;
|
|||
system.build.VMA = import ../../lib/make-disk-image.nix {
|
||||
name = "proxmox-${cfg.filenameSuffix}";
|
||||
inherit partitionTableType;
|
||||
additionalSpace = config.proxmox.additionalDiskSpace;
|
||||
postVM = let
|
||||
# Build qemu with PVE's patch that adds support for the VMA format
|
||||
vma = (pkgs.qemu_kvm.override {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue