Skip to content

Commit

Permalink
Merge pull request #923 from whs-dot-hk/fix-typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
Mic92 authored Jan 11, 2025
2 parents cb6297a + 79a12e6 commit 33827d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/make-disk-image.nix
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ in
{
buildInputs = dependencies;
inherit preVM QEMU_OPTS;
postVm = cfg.extraPostVM;
postVM = cfg.extraPostVM;
inherit (diskoCfg) memSize;
}
(partitioner + installer));
Expand Down
4 changes: 2 additions & 2 deletions module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ in
extraPostVM = lib.mkOption {
type = lib.types.lines;
description = ''
extra shell code to execute once the disk image(s) have been succesfully created and moved to $out
extra shell code to execute once the disk image(s) have been successfully created and moved to $out
'';
default = "";
default = ":";
example = lib.literalExpression ''
''${pkgs.zstd}/bin/zstd --compress $out/*raw
rm $out/*raw
Expand Down

0 comments on commit 33827d2

Please sign in to comment.