Compare commits

...

2 Commits

Author SHA1 Message Date
henrov 5faf41bbb0 Working on reshuffling 2026-03-19 12:05:36 +00:00
henrov 911ceba1be deleted generated files 2026-03-19 12:05:35 +00:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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
+2 -2
View File
@@ -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)";
}; };
} }