-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New module to support qemu, qemu-efi, raw, raw-efi outputs as known from nixos-generators in system.build.images.
- Loading branch information
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
let | ||
cfg = config.image; | ||
in | ||
{ | ||
imports = [ | ||
./disk-size-option.nix | ||
../image/file-options.nix | ||
]; | ||
|
||
options.image = { | ||
format = lib.mkOption { | ||
description = "Format of the disk image to generate: raw or qcow2"; | ||
type = lib.types.enum [ | ||
"raw" | ||
"qcow2" | ||
]; | ||
default = "qcow2"; | ||
}; | ||
efiSupport = lib.mkOption { | ||
description = "Whether the disk image should support EFI boot or legacy boot"; | ||
type = lib.types.bool; | ||
default = true; | ||
}; | ||
}; | ||
|
||
config = { | ||
boot.loader.grub = lib.mkIf (!cfg.efiSupport) { | ||
enable = lib.mkOptionDefault true; | ||
devices = lib.mkDefault [ "/dev/vda" ]; | ||
}; | ||
boot.loader.systemd-boot.enable = lib.mkDefault cfg.efiSupport; | ||
boot.growPartition = lib.mkDefault true; | ||
|
||
fileSystems = { | ||
"/" = { | ||
device = "/dev/disk/by-label/nixos"; | ||
autoResize = true; | ||
fsType = "ext4"; | ||
}; | ||
"/boot" = lib.mkIf (cfg.efiSupport) { | ||
device = "/dev/disk/by-label/ESP"; | ||
fsType = "vfat"; | ||
}; | ||
}; | ||
|
||
system.nixos.tags = [ cfg.format ] ++ lib.optionals cfg.efiSupport [ "efi" ]; | ||
image.extension = cfg.format; | ||
system.build.image = import ../../lib/make-disk-image.nix { | ||
inherit lib config pkgs; | ||
inherit (config.virtualisation) diskSize; | ||
inherit (cfg) baseName format; | ||
partitionTableType = if cfg.efiSupport then "efi" else "legacy"; | ||
}; | ||
}; | ||
} |