turn all extraArgs into lists

This commit is contained in:
lassulus 2023-02-14 09:58:37 +01:00
parent 7585a30385
commit 6d630b8fe4
5 changed files with 16 additions and 16 deletions

View file

@ -7,9 +7,9 @@
description = "Type";
};
extraArgs = lib.mkOption {
type = lib.types.str;
default = "";
description = "Arguments to pass";
type = lib.types.listOf lib.types.str;
default = [ ];
description = "Extra arguments";
};
mountOptions = lib.mkOption {
type = lib.types.listOf lib.types.str;
@ -35,7 +35,7 @@
inherit config options;
default = { dev }: ''
mkfs.${config.format} \
${config.extraArgs} \
${toString config.extraArgs} \
${dev}
'';
};