10 lines
249 B
Nix
10 lines
249 B
Nix
inputs:
|
|
let
|
|
inherit (inputs.self.flakeLib) host stableHost;
|
|
in
|
|
{
|
|
beefcake = stableHost ./beefcake.nix { };
|
|
dragon = host ./dragon.nix { };
|
|
foxtrot = host ./foxtrot.nix { };
|
|
# arm-dragon = host ./dragon.nix { system = "aarch64-linux"; };
|
|
}
|