export nix module

This commit is contained in:
Yisroel Baum 2026-07-02 01:31:58 +03:00
parent fee174ec05
commit e288b3a63b
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
6 changed files with 522 additions and 4 deletions

7
nix/packages/default.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs }:
rec {
backend = pkgs.callPackage ./backend.nix { };
frontend = pkgs.callPackage ./frontend.nix { };
default = frontend;
}