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 = {
|
||||
boot.initramfs = {
|
||||
enable = mkEnableOption "enable initramfs";
|
||||
enable = mkEnableOption "initramfs";
|
||||
};
|
||||
system.outputs.initramfs = mkOption {
|
||||
type = types.package;
|
||||
|
|
|
@ -10,11 +10,11 @@ in {
|
|||
options = {
|
||||
boot = {
|
||||
ramdisk = {
|
||||
enable = mkEnableOption (lib.mdDoc ''
|
||||
Configure kernel to enable reserving part of memory as
|
||||
enable = mkEnableOption ''
|
||||
reserving part of memory as
|
||||
an MTD-based RAM disk. Needed for TFTP booting or for
|
||||
kexec-based revertable upgrade
|
||||
'');
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue