diff --git a/doc/hardware.nix b/doc/hardware.nix index e3ef1380..e3733e92 100644 --- a/doc/hardware.nix +++ b/doc/hardware.nix @@ -1,9 +1,10 @@ with import {} ; let - devices = builtins.readDir ../devices; - inherit (builtins) stringLength; - texts = lib.mapAttrsToList (n: t: + inherit (builtins) stringLength readDir filter; + devices = filter (n: n != "families") + (lib.mapAttrsToList (n: t: n) (readDir ../devices)); + texts = map (n: let d = import ../devices/${n}/default.nix; d' = { description = "${n}\n${substring 0 (stringLength n) "********************************"}\n";