Working on reshuffling

This commit is contained in:
2026-03-19 12:15:58 +00:00
parent 708eeb8475
commit fcca2c9be1
2 changed files with 8 additions and 6 deletions
+4 -3
View File
@@ -135,11 +135,12 @@ The Nix flake definition for Droidnix.
This sets the networking.
#+BEGIN_SRC nix :tangle generated/system/mysystem.nix :noweb tangle :mkdirp yes :eval never-html
{ lib, ... }:
{
options.mySystem = lib.mkOption {
type = lib.types.attrsOf lib.types.anything;
default = {};
description = "Root for custom mySystem options (hierarchical)";
type = lib.types.submodule;
description = "Root for custom mySystem options";
options = {};
};
}
#+END_SRC
+4 -3
View File
@@ -1,8 +1,9 @@
{ lib, ... }:
{
options.mySystem = lib.mkOption {
type = lib.types.attrsOf lib.types.anything;
default = {};
description = "Root for custom mySystem options (hierarchical)";
type = lib.types.submodule;
description = "Root for custom mySystem options";
options = {};
};
}