{ inputs, lib, pkgs, ... }: import inputs.nix-topology { inherit pkgs; modules = [ { nixosConfigurations = inputs.self.nixosConfigurations |> lib.filterAttrs (n: _: !(lib.hasPrefix "test" n) && !(lib.hasPrefix "iso" n)); } (_: { nodes = lib.my.configurations |> lib.filterAttrs (_: v: !v.isOther) |> lib.mapAttrs (_: v: { inherit (v) deviceIcon; }); }) ]; }