nixos-configs/checks/default.nix

18 lines
408 B
Nix
Raw Normal View History

{
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;};
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;
}