Alisa/shell.nix

11 lines
246 B
Nix
Raw Normal View History

2024-07-06 09:42:54 +02:00
{
2024-07-06 09:57:10 +02:00
pkgs ? import <nixpkgs>,
system ? builtins.currentSystem,
inputs ? { self = import ./flake.nix; },
2024-07-06 09:42:54 +02:00
}:
pkgs.mkShell {
packages = with pkgs; [];
2024-07-06 09:57:10 +02:00
inputsFrom = with inputs.self.outputs.legacyPackages.${system}; [ backend web native ];
2024-07-06 09:42:54 +02:00
}