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