set upload limits

This commit is contained in:
Yisroel Baum 2026-07-03 15:04:07 +03:00
parent ec956c1ca8
commit 757be61f59
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
6 changed files with 34 additions and 11 deletions

View file

@ -1,7 +1,12 @@
{ pkgs }:
{
pkgs,
uploadLimits ? import ../upload-limits.nix,
}:
rec {
backend = pkgs.callPackage ./backend.nix { };
backend = pkgs.callPackage ./backend.nix {
inherit uploadLimits;
};
frontend = pkgs.callPackage ./frontend.nix { };
default = frontend;
}