···160160 # Generated with `uuidgen`. Random but fixed to improve reproducibility.
161161 default = "0867da16-f251-457d-a9e8-c31f9a3c220b";
162162 description = ''
163163- A UUID to use as a seed. You can set this to `null` to explicitly
163163+ A UUID to use as a seed. You can set this to `null` to explicitly
164164 randomize the partition UUIDs.
165165 '';
166166 };
···169169 type = lib.types.bool;
170170 default = false;
171171 description = ''
172172- Enables generation of split artifacts from partitions. If enabled, for
172172+ Enables generation of split artifacts from partitions. If enabled, for
173173 each partition with SplitName= set, a separate output file containing
174174 just the contents of that partition is generated.
175175 '';
···180180 default = 512;
181181 example = lib.literalExpression "4096";
182182 description = ''
183183- The sector size of the disk image produced by systemd-repart. This
183183+ The sector size of the disk image produced by systemd-repart. This
184184 value must be a power of 2 between 512 and 4096.
185185 '';
186186 };
···199199 type = with lib.types; attrsOf (submodule partitionOptions);
200200 default = { };
201201 example = lib.literalExpression ''
202202- {
202202+ {
203203 "10-esp" = {
204204 contents = {
205205 "/EFI/BOOT/BOOTX64.EFI".source =
···221221 };
222222 '';
223223 description = ''
224224- Specify partitions as a set of the names of the partitions with their
224224+ Specify partitions as a set of the names of the partitions with their
225225 configuration as the key.
226226 '';
227227 };
···230230 type = with lib.types; attrsOf (listOf str);
231231 default = { };
232232 example = lib.literalExpression ''
233233- {
233233+ {
234234 vfat = [ "-S 512" "-c" ];
235235 }
236236 '';
237237 description = ''
238238- Specify extra options for created file systems. The specified options
238238+ Specify extra options for created file systems. The specified options
239239 are converted to individual environment variables of the format
240240 `SYSTEMD_REPART_MKFS_OPTIONS_<FSTYPE>`.
241241