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 {
|
||||
type = types.attrsOf type_service;
|
||||
};
|
||||
kernel = mkOption {
|
||||
type = types.anything;
|
||||
kernel = {
|
||||
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