Alisa/shell.nix
2024-07-10 17:23:27 +02:00

16 lines
267 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
];
}