12 lines
216 B
Nix
12 lines
216 B
Nix
{
|
|
pkgs,
|
|
uploadLimits ? import ../upload-limits.nix,
|
|
}:
|
|
|
|
rec {
|
|
backend = pkgs.callPackage ./backend.nix {
|
|
inherit uploadLimits;
|
|
};
|
|
frontend = pkgs.callPackage ./frontend.nix { };
|
|
default = frontend;
|
|
}
|