nixos-configs/checks/default.nix
matt1432 1fd44269a2
All checks were successful
Discord / discord commits (push) Has been skipped
feat(checks): make #nixFastChecks an attrset
2024-12-11 12:05:16 -05:00

17 lines
408 B
Nix

{
pkgs,
self,
}: let
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;
}