nixos-configs/checks/apps/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

10 lines
172 B
Nix

{
pkgs,
self,
}: let
inherit (pkgs.lib) mapAttrs' nameValuePair;
in
mapAttrs'
(name: app:
nameValuePair "app_${name}" app)
self.appsPackages.${pkgs.system}