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, ... }: { lib, ... }:
{ {
options.mySystem = lib.mkOption { # Declare a submodule container for all mySystem children
type = lib.types.attrsOf lib.types.submodule; # works in all versions options.mySystem = lib.mkSubmodule {
default = {}; description = "Root container for all mySystem options";
description = "Root container for all my custom system options";
}; };
} }
#+END_SRC #+END_SRC
+3 -4
View File
@@ -1,9 +1,8 @@
{ lib, ... }: { lib, ... }:
{ {
options.mySystem = lib.mkOption { # Declare a submodule container for all mySystem children
type = lib.types.attrsOf lib.types.submodule; # works in all versions options.mySystem = lib.mkSubmodule {
default = {}; description = "Root container for all mySystem options";
description = "Root container for all my custom system options";
}; };
} }