Alisa/shell.nix

17 lines
267 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,
2024-07-10 16:03:10 +02:00
inputs ? {
self = import ./flake.nix;
},
2024-07-06 09:42:54 +02:00
}:
pkgs.mkShell {
2024-07-10 16:03:10 +02:00
packages = with pkgs; [ ];
inputsFrom = with inputs.self.outputs.legacyPackages.${system}; [
backend
web
native
];
2024-07-06 09:42:54 +02:00
}