nixos-configs/nixFastChecks/apps/default.nix
matt1432 6ca0d7248b
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: rename some flake attr directories
2024-12-16 15:51:41 -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}