improve grammar of mkEnableOption descriptions
This commit is contained in:
parent
4689cebf8d
commit
c3631f4c9d
2 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@ in
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
boot.initramfs = {
|
boot.initramfs = {
|
||||||
enable = mkEnableOption "enable initramfs";
|
enable = mkEnableOption "initramfs";
|
||||||
};
|
};
|
||||||
system.outputs.initramfs = mkOption {
|
system.outputs.initramfs = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
|
|
|
@ -10,11 +10,11 @@ in {
|
||||||
options = {
|
options = {
|
||||||
boot = {
|
boot = {
|
||||||
ramdisk = {
|
ramdisk = {
|
||||||
enable = mkEnableOption (lib.mdDoc ''
|
enable = mkEnableOption ''
|
||||||
Configure kernel to enable reserving part of memory as
|
reserving part of memory as
|
||||||
an MTD-based RAM disk. Needed for TFTP booting or for
|
an MTD-based RAM disk. Needed for TFTP booting or for
|
||||||
kexec-based revertable upgrade
|
kexec-based revertable upgrade
|
||||||
'');
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue