Compare commits

...

2 Commits

Author SHA1 Message Date
henrov 81792f025f Working on reshuffling 2026-03-19 13:31:04 +00:00
henrov 303319d6a2 deleted generated files 2026-03-19 13:31:03 +00:00
2 changed files with 4 additions and 6 deletions
+2 -3
View File
@@ -137,11 +137,10 @@ This sets the networking.
{ lib, ... }: { lib, ... }:
{ {
# Root for custom options
options.mySystem = lib.mkOption { options.mySystem = lib.mkOption {
type = lib.types.attrs; # simple attribute set type = lib.types.attrsOf lib.types.value; # allows nested options
default = {}; default = {};
description = "Root for custom mySystem options"; description = "Root container for all my custom system options";
}; };
} }
#+END_SRC #+END_SRC
+2 -3
View File
@@ -1,10 +1,9 @@
{ lib, ... }: { lib, ... }:
{ {
# Root for custom options
options.mySystem = lib.mkOption { options.mySystem = lib.mkOption {
type = lib.types.attrs; # simple attribute set type = lib.types.attrsOf lib.types.value; # allows nested options
default = {}; default = {};
description = "Root for custom mySystem options"; description = "Root container for all my custom system options";
}; };
} }