Alisa/shell.nix

11 lines
161 B
Nix
Raw Normal View History

2024-07-06 09:42:54 +02:00
{
pkgs,
system,
inputs,
}:
pkgs.mkShell {
packages = with pkgs; [];
inputsFrom = with inputs.self.legacyPackages.${system}; [ backend web native ];
}