specify type for rootDevice module option

mainline-omnia-wip
Daniel Barlow 2024-02-02 19:50:13 +00:00
parent c1ad139310
commit 89c88dd472
1 changed files with 5 additions and 1 deletions

View File

@ -76,7 +76,11 @@ in {
default = [];
example = ["ath9k" "ath10k"];
};
rootDevice = mkOption { };
rootDevice = mkOption {
description = "Full path to preferred root device";
type = types.str;
example = "/dev/mtdblock3";
};
networkInterfaces = mkOption {
type = types.attrsOf types.anything;
};