nixos-configs/apps/default.nix
matt1432 655eac9ad6
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(extract-subs): move to apps and split up code better
2024-11-15 11:37:58 -05:00

15 lines
243 B
Nix

{
inputs,
pkgs,
...
}: let
inherit (pkgs.lib) getExe;
mkApp = file: {
program = getExe (pkgs.callPackage file ({} // inputs));
type = "app";
};
in {
extract-subs = mkApp ./extract-subs;
updateFlake = mkApp ./update;
}