forked from DGNum/liminix
check type of kernel config attrsets
This commit is contained in:
parent
1b1aa9de76
commit
f0024dcac5
1 changed files with 9 additions and 2 deletions
|
@ -15,8 +15,15 @@ in {
|
||||||
services = mkOption {
|
services = mkOption {
|
||||||
type = types.attrsOf type_service;
|
type = types.attrsOf type_service;
|
||||||
};
|
};
|
||||||
kernel = mkOption {
|
kernel = {
|
||||||
type = types.anything;
|
config = mkOption {
|
||||||
|
# mostly the values are y n or m, but sometimes
|
||||||
|
# other strings are also used
|
||||||
|
type = types.attrsOf types.nonEmptyStr;
|
||||||
|
};
|
||||||
|
checkedConfig = mkOption {
|
||||||
|
type = types.attrsOf types.nonEmptyStr;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue