mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
Merge pull request #640 from MatthewCroughan/mc/extraPostVM-nixosConfig
make-disk-image: make extraPostVM configurable from module.nix
This commit is contained in:
commit
601be8412d
2 changed files with 12 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
, pkgs ? nixosConfig.pkgs
|
||||
, lib ? pkgs.lib
|
||||
, name ? "${nixosConfig.config.networking.hostName}-disko-images"
|
||||
, extraPostVM ? ""
|
||||
, extraPostVM ? nixosConfig.config.disko.extraPostVM
|
||||
, checked ? false
|
||||
}:
|
||||
let
|
||||
|
|
11
module.nix
11
module.nix
|
@ -17,6 +17,17 @@ in
|
|||
'';
|
||||
default = [ ];
|
||||
};
|
||||
extraPostVM = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
description = ''
|
||||
extra shell code to execute once the disk image(s) have been succesfully created and moved to $out
|
||||
'';
|
||||
default = "";
|
||||
example = pkgs.literalExpression ''
|
||||
''${pkgs.zstd}/bin/zstd --compress $out/*raw
|
||||
rm $out/*raw
|
||||
'';
|
||||
};
|
||||
memSize = lib.mkOption {
|
||||
type = lib.types.int;
|
||||
description = ''
|
||||
|
|
Loading…
Reference in a new issue