2024-08-05 16:40:32 -04:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
self,
|
|
|
|
}: let
|
2024-11-21 23:33:37 -05:00
|
|
|
apps = import ./apps {inherit pkgs self;};
|
|
|
|
devices = import ./devices {inherit pkgs self;};
|
|
|
|
packages = import ./packages {inherit pkgs self;};
|
2024-12-11 12:05:16 -05:00
|
|
|
in {
|
|
|
|
# Allow homie to serve a binary cache for the devices away from servivi
|
|
|
|
aptDevices = import ./devices {
|
|
|
|
onlyApt = true;
|
|
|
|
inherit pkgs self;
|
|
|
|
};
|
|
|
|
|
|
|
|
all = apps // devices // packages;
|
|
|
|
inherit apps packages devices;
|
|
|
|
}
|