nix/packages/hosts/default.nix

11 lines
249 B
Nix
Raw Normal View History

2025-02-16 10:43:53 -06:00
inputs:
2025-02-14 13:31:18 -06:00
let
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 { };
foxtrot = host ./foxtrot.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
}