Compare commits

...

2 Commits

Author SHA1 Message Date
henrov 5e2f9e287b Working on reshuffling 2026-03-19 13:36:48 +00:00
henrov bca45c1ba2 deleted generated files 2026-03-19 13:36:47 +00:00
2 changed files with 6 additions and 8 deletions
+3 -4
View File
@@ -137,10 +137,9 @@ This sets the networking.
{ lib, ... }:
{
options.mySystem = lib.mkOption {
type = lib.types.attrsOf lib.types.submodule; # works in all versions
default = {};
description = "Root container for all my custom system options";
# Declare a submodule container for all mySystem children
options.mySystem = lib.mkSubmodule {
description = "Root container for all mySystem options";
};
}
#+END_SRC
+3 -4
View File
@@ -1,9 +1,8 @@
{ lib, ... }:
{
options.mySystem = lib.mkOption {
type = lib.types.attrsOf lib.types.submodule; # works in all versions
default = {};
description = "Root container for all my custom system options";
# Declare a submodule container for all mySystem children
options.mySystem = lib.mkSubmodule {
description = "Root container for all mySystem options";
};
}