nixos-configs/checks/default.nix

21 lines
515 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;};
2024-12-16 15:02:39 -05:00
devShells = import ./devShells {inherit pkgs self;};
2024-11-21 23:33:37 -05:00
packages = import ./packages {inherit pkgs self;};
in {
# Allow homie to serve a binary cache for the devices away from servivi
2024-12-16 15:02:39 -05:00
aptDevices =
devShells
// (import ./devices {
onlyApt = true;
inherit pkgs self;
});
2024-12-16 15:02:39 -05:00
all = apps // devices // devShells // packages;
inherit apps devices devShells packages;
}