mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
document extraRootModules better
This commit is contained in:
parent
50d4d13fba
commit
dd4d1663cc
1 changed files with 2 additions and 1 deletions
|
@ -13,9 +13,10 @@ in
|
||||||
extraRootModules = lib.mkOption {
|
extraRootModules = lib.mkOption {
|
||||||
type = lib.types.listOf lib.types.str;
|
type = lib.types.listOf lib.types.str;
|
||||||
description = ''
|
description = ''
|
||||||
extra modules to pass to the vmTools.runCommand invocation in the make-disk-image.nix builder
|
extra kernel modules to pass to the vmTools.runCommand invocation in the make-disk-image.nix builder
|
||||||
'';
|
'';
|
||||||
default = [ ];
|
default = [ ];
|
||||||
|
example = [ "bcachefs" ];
|
||||||
};
|
};
|
||||||
extraPostVM = lib.mkOption {
|
extraPostVM = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
|
|
Loading…
Reference in a new issue