diff --git a/nodes/1_lib/source/source-types.nix b/nodes/1_lib/source/source-types.nix deleted file mode 100644 index c4f263d..0000000 --- a/nodes/1_lib/source/source-types.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ lib }: - -let - defaultSourceType = tname: { - shortName = tname; - isSource = false; - }; -in lib.mapAttrs (tname: tset: defaultSourceType tname // tset) { - - fromSource = { - isSource = true; - }; - - binaryNativeCode = {}; - - binaryBytecode = {}; - - binaryFirmware = {}; -}