nix/packages/hosts/default.nix
Daniel Flanagan 2c37b61a08
Some checks failed
/ check (push) Failing after 31s
feat: add bigtower
2025-02-19 11:41:22 -06:00

14 lines
405 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 { };
# arm-dragon = host ./dragon.nix { system = "aarch64-linux"; };
}