nix/packages/hosts/default.nix
2025-02-19 11:57:58 -06:00

15 lines
445 B
Nix

inputs:
let
inherit (inputs.self.flakeLib) host stableHost;
in
{
beefcake = stableHost ./beefcake.nix { };
dragon = host ./dragon.nix { };
foxtrot = host ./foxtrot.nix { };
thinker = host ./thinker.nix { };
htpc = stableHost ./htpc.nix { };
router = stableHost ./router.nix { };
bigtower = stableHost ./bigtower.nix { };
rascal = stableHost ./rascal.nix { };
# arm-dragon = host ./dragon.nix { system = "aarch64-linux"; };
}