Files
chitai/shell.nix
2025-12-04 00:33:37 -05:00

8 lines
174 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
inputsFrom = [
(import ./frontend/shell.nix { inherit pkgs; })
(import ./backend/shell.nix { inherit pkgs; })
];
}