File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 25
25
type = with types ; attrsOf ( submodule ( { config , name , ... } : {
26
26
options = {
27
27
config = mkOption {
28
- description = lib . mdDoc ''
28
+ description = ''
29
29
A specification of the desired configuration of this MicroVM,
30
30
as a NixOS module, for building **without** a flake.
31
31
'' ;
56
56
type = types . path ;
57
57
default = if config . pkgs != null then config . pkgs . path else pkgs . path ;
58
58
defaultText = literalExpression "pkgs.path" ;
59
- description = lib . mdDoc ''
59
+ description = ''
60
60
This option is only respected when `config` is specified.
61
61
The nixpkgs path to use for the MicroVM. Defaults to the host's nixpkgs.
62
62
'' ;
66
66
type = types . nullOr types . unspecified ;
67
67
default = pkgs ;
68
68
defaultText = literalExpression "pkgs" ;
69
- description = lib . mdDoc ''
69
+ description = ''
70
70
This option is only respected when `config` is specified.
71
71
The package set to use for the MicroVM. Must be a nixpkgs package set with the microvm overlay. Determines the system of the MicroVM.
72
72
If set to null, a new package set will be instantiated.
76
76
specialArgs = mkOption {
77
77
type = types . attrsOf types . unspecified ;
78
78
default = { } ;
79
- description = lib . mdDoc ''
79
+ description = ''
80
80
This option is only respected when `config` is specified.
81
81
A set of special arguments to be passed to NixOS modules.
82
82
This will be merged into the `specialArgs` used to evaluate
Original file line number Diff line number Diff line change 16
16
{
17
17
options . microvm . optimize = {
18
18
enable = lib . mkOption {
19
- description = lib . mdDoc ''
19
+ description = ''
20
20
Enables some optimizations by default to closure size and startup time:
21
21
- defaults documentation to off
22
22
- defaults to using systemd in initrd
You can’t perform that action at this time.
0 commit comments