From 7dc5f8db8eca99aee33a353adc4bb2a3e1de1cfa Mon Sep 17 00:00:00 2001 From: Jeff Hykin Date: Sat, 25 May 2024 11:02:20 -0400 Subject: [PATCH] clean unused --- nodes/1_lib/source/source-types.nix | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 nodes/1_lib/source/source-types.nix 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 = {}; -}