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. # Generated with `uuidgen`. Random but fixed to improve reproducibility.
default = "0867da16-f251-457d-a9e8-c31f9a3c220b"; default = "0867da16-f251-457d-a9e8-c31f9a3c220b";
description = '' 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. randomize the partition UUIDs.
''; '';
}; };
@ -169,7 +169,7 @@ in
type = lib.types.bool; type = lib.types.bool;
default = false; default = false;
description = '' 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 each partition with SplitName= set, a separate output file containing
just the contents of that partition is generated. just the contents of that partition is generated.
''; '';
@ -180,7 +180,7 @@ in
default = 512; default = 512;
example = lib.literalExpression "4096"; example = lib.literalExpression "4096";
description = '' 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. value must be a power of 2 between 512 and 4096.
''; '';
}; };
@ -199,7 +199,7 @@ in
type = with lib.types; attrsOf (submodule partitionOptions); type = with lib.types; attrsOf (submodule partitionOptions);
default = { }; default = { };
example = lib.literalExpression '' example = lib.literalExpression ''
{ {
"10-esp" = { "10-esp" = {
contents = { contents = {
"/EFI/BOOT/BOOTX64.EFI".source = "/EFI/BOOT/BOOTX64.EFI".source =
@ -221,7 +221,7 @@ in
}; };
''; '';
description = '' 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. configuration as the key.
''; '';
}; };
@ -230,12 +230,12 @@ in
type = with lib.types; attrsOf (listOf str); type = with lib.types; attrsOf (listOf str);
default = { }; default = { };
example = lib.literalExpression '' example = lib.literalExpression ''
{ {
vfat = [ "-S 512" "-c" ]; vfat = [ "-S 512" "-c" ];
} }
''; '';
description = '' 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 are converted to individual environment variables of the format
`SYSTEMD_REPART_MKFS_OPTIONS_<FSTYPE>`. `SYSTEMD_REPART_MKFS_OPTIONS_<FSTYPE>`.