Compare commits
2 Commits
ec52a4475a
...
5faf41bbb0
| Author | SHA1 | Date | |
|---|---|---|---|
| 5faf41bbb0 | |||
| 911ceba1be |
+2
-2
@@ -137,9 +137,9 @@ This sets the networking.
|
|||||||
{ lib, ... }:
|
{ lib, ... }:
|
||||||
{
|
{
|
||||||
options.mySystem = lib.mkOption {
|
options.mySystem = lib.mkOption {
|
||||||
type = lib.types.attrs;
|
type = lib.types.attrsOf lib.types.anything;
|
||||||
default = {};
|
default = {};
|
||||||
description = "Root for custom mySystem options (placeholder)";
|
description = "Root for custom mySystem options (hierarchical)";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{ lib, ... }:
|
{ lib, ... }:
|
||||||
{
|
{
|
||||||
options.mySystem = lib.mkOption {
|
options.mySystem = lib.mkOption {
|
||||||
type = lib.types.attrs;
|
type = lib.types.attrsOf lib.types.anything;
|
||||||
default = {};
|
default = {};
|
||||||
description = "Root for custom mySystem options (placeholder)";
|
description = "Root for custom mySystem options (hierarchical)";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user