Skip to content

Commit

Permalink
make-disk-image: use nix path-info to automatically set the imageSize
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewCroughan committed Dec 12, 2023
1 parent 1144887 commit d2d1915
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion lib/make-disk-image.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@ let
util-linux
];
preVM = ''
${lib.concatMapStringsSep "\n" (disk: "truncate -s ${disk.imageSize} ${disk.name}.raw") (lib.attrValues nixosConfig.config.disko.devices.disk)}
export PATH=$PATH:${pkgs.nix}/bin:${pkgs.jq}/bin
export NIX_STATE_DIR=$TMPDIR/state
export NIX_CONFIG="experimental-features = nix-command"
nix-store --load-db < ${pkgs.closureInfo {
rootPaths = [ systemToInstall.config.system.build.toplevel ];
}}/registration
${lib.concatMapStringsSep "\n" (disk: "truncate -s $(($(set -x; nix path-info --json ${systemToInstall.config.system.build.toplevel} | jq .[].closureSize) + ${toString disk.imageSizeExtraBytes})) ${disk.name}.raw") (lib.attrValues nixosConfig.config.disko.devices.disk)}
'';
postVM = ''
# shellcheck disable=SC2154
Expand Down
10 changes: 5 additions & 5 deletions lib/types/disk.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
type = diskoLib.optionTypes.absolute-pathname; # TODO check if subpath of /dev ? - No! eg: /.swapfile
description = "Device path";
};
imageSize = lib.mkOption {
type = lib.types.strMatching "[0-9]+[KMGTP]?";
imageSizeExtraBytes = lib.mkOption {
type = lib.types.int;
description = ''
size of the image if the makeDiskImages function from diksoLib is used.
is used as an argument to truncate -s
extra size in bytes to add to the end of the disk image if the makeDiskImages function from diksoLib is used.
This is used as an argument to truncate -s
'';
default = "2G";
default = 2000000000;
};
content = diskoLib.deviceType { parent = config; device = config.device; };
_meta = lib.mkOption {
Expand Down

0 comments on commit d2d1915

Please sign in to comment.