Alisa/shell.nix
2024-07-06 09:57:10 +02:00

10 lines
246 B
Nix

{
pkgs ? import <nixpkgs>,
system ? builtins.currentSystem,
inputs ? { self = import ./flake.nix; },
}:
pkgs.mkShell {
packages = with pkgs; [];
inputsFrom = with inputs.self.outputs.legacyPackages.${system}; [ backend web native ];
}