repart: fix whitespace in option descriptions

I mistakenly added extra whitespace in
https://github.com/NixOS/nixpkgs/pull/401872 which negatively affects
aesthetics of our documentation.

Thought it was part of nixfmt-rfc-styles output, but can't reproduce.
Might have had configured the wrong nixfmt.
This commit is contained in:
phaer 2025-05-14 09:32:18 +02:00
parent 3c5ac8ecfa
commit 8a2195e94e

View file

@ -160,7 +160,7 @@ in
# Generated with `uuidgen`. Random but fixed to improve reproducibility.
default = "0867da16-f251-457d-a9e8-c31f9a3c220b";
description = ''
A UUID to use as a seed. You can set this to `null` to explicitly
A UUID to use as a seed. You can set this to `null` to explicitly
randomize the partition UUIDs.
'';
};
@ -169,7 +169,7 @@ in
type = lib.types.bool;
default = false;
description = ''
Enables generation of split artifacts from partitions. If enabled, for
Enables generation of split artifacts from partitions. If enabled, for
each partition with SplitName= set, a separate output file containing
just the contents of that partition is generated.
'';
@ -180,7 +180,7 @@ in
default = 512;
example = lib.literalExpression "4096";
description = ''
The sector size of the disk image produced by systemd-repart. This
The sector size of the disk image produced by systemd-repart. This
value must be a power of 2 between 512 and 4096.
'';
};
@ -199,7 +199,7 @@ in
type = with lib.types; attrsOf (submodule partitionOptions);
default = { };
example = lib.literalExpression ''
{
{
"10-esp" = {
contents = {
"/EFI/BOOT/BOOTX64.EFI".source =
@ -221,7 +221,7 @@ in
};
'';
description = ''
Specify partitions as a set of the names of the partitions with their
Specify partitions as a set of the names of the partitions with their
configuration as the key.
'';
};
@ -230,12 +230,12 @@ in
type = with lib.types; attrsOf (listOf str);
default = { };
example = lib.literalExpression ''
{
{
vfat = [ "-S 512" "-c" ];
}
'';
description = ''
Specify extra options for created file systems. The specified options
Specify extra options for created file systems. The specified options
are converted to individual environment variables of the format
`SYSTEMD_REPART_MKFS_OPTIONS_<FSTYPE>`.