2025-02-16 10:43:53 -06:00
|
|
|
inputs:
|
2025-02-14 13:31:18 -06:00
|
|
|
let
|
2025-02-16 21:22:30 -06:00
|
|
|
inherit (inputs.self.flakeLib) host stableHost;
|
2025-02-14 13:31:18 -06:00
|
|
|
in
|
|
|
|
{
|
2025-02-16 10:43:53 -06:00
|
|
|
beefcake = stableHost ./beefcake.nix { };
|
2025-02-14 13:31:18 -06:00
|
|
|
dragon = host ./dragon.nix { };
|
2025-02-16 21:22:30 -06:00
|
|
|
foxtrot = host ./foxtrot.nix { };
|
2025-02-17 21:42:13 -06:00
|
|
|
thinker = host ./thinker.nix { };
|
2025-02-17 00:01:00 -06:00
|
|
|
htpc = stableHost ./htpc.nix { };
|
2025-02-18 16:28:00 -06:00
|
|
|
router = stableHost ./router.nix { };
|
2025-02-19 11:41:22 -06:00
|
|
|
bigtower = stableHost ./bigtower.nix { };
|
2025-02-19 11:57:58 -06:00
|
|
|
rascal = stableHost ./rascal.nix { };
|
2025-02-20 21:55:31 -06:00
|
|
|
flipflop = host ./flipflop.nix { };
|
|
|
|
thablet = host ./thablet.nix { };
|
2025-02-19 12:09:14 -06:00
|
|
|
|
|
|
|
generic-headless = stableHost ./generic-headless.nix { };
|
|
|
|
generic = stableHost ./generic.nix { };
|
2025-02-14 15:40:53 -06:00
|
|
|
# arm-dragon = host ./dragon.nix { system = "aarch64-linux"; };
|
2025-02-14 13:04:04 -06:00
|
|
|
}
|