improve grammar of mkEnableOption descriptions

module-based-network
Daniel Barlow 2023-08-04 20:19:27 +01:00
parent 4689cebf8d
commit c3631f4c9d
2 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ in
{
options = {
boot.initramfs = {
enable = mkEnableOption "enable initramfs";
enable = mkEnableOption "initramfs";
};
system.outputs.initramfs = mkOption {
type = types.package;

View File

@ -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
'');
'';
};
};
};