Alisa/shell.nix
2024-07-06 09:42:54 +02:00

10 lines
161 B
Nix

{
pkgs,
system,
inputs,
}:
pkgs.mkShell {
packages = with pkgs; [];
inputsFrom = with inputs.self.legacyPackages.${system}; [ backend web native ];
}