deleted generated files

This commit is contained in:
2026-03-19 12:29:32 +00:00
parent 25ae144ee9
commit d75191b68f
32 changed files with 10 additions and 1541 deletions
+10 -5
View File
@@ -135,12 +135,17 @@ 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.attrsOf lib.types.any;
default = {};
description = "Root container for custom mySystem options (desktop, apps, etc.)";
options.mySystem = lib.mkSubmodule {
description = "Root for custom mySystem options";
options = {
desktop = lib.mkSubmodule {
description = "Desktop-related modules (fonts, wm, theming)";
options = {};
};
};
};
}
#+END_SRC