refactor(flake): expose appsPackages

This commit is contained in:
matt1432 2024-11-23 19:35:01 -05:00
parent 5dd3f3f4e6
commit d3e9a1b1d7
5 changed files with 26 additions and 10 deletions

View file

@ -5,7 +5,7 @@
}: let
inherit (pkgs.lib) getExe listToAttrs nameValuePair;
buildApp = attrs: (pkgs.callPackage ./buildApp.nix ({} // inputs // attrs));
buildApp = attrs: (pkgs.callPackage ./nix/buildApp.nix ({} // inputs // attrs));
mkApp = file: {
program = getExe (pkgs.callPackage file ({inherit buildApp;} // inputs));