nix/packages/hosts/default.nix

21 lines
622 B
Nix
Raw Permalink 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-17 21:42:13 -06:00
thinker = host ./thinker.nix { };
2025-02-17 00:01:00 -06:00
htpc = stableHost ./htpc.nix { };
2025-02-18 16:28:00 -06:00
router = stableHost ./router.nix { };
2025-02-19 11:41:22 -06:00
bigtower = stableHost ./bigtower.nix { };
rascal = stableHost ./rascal.nix { };
2025-02-20 21:55:31 -06:00
flipflop = host ./flipflop.nix { };
thablet = host ./thablet.nix { };
2025-02-19 12:09:14 -06:00
generic-headless = stableHost ./generic-headless.nix { };
generic = stableHost ./generic.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
}