Files
chitai/shell.nix
T

9 lines
175 B
Nix

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