diff --git a/shell.nix b/shell.nix index b215bfb..e03aa18 100644 --- a/shell.nix +++ b/shell.nix @@ -1,10 +1,10 @@ { - pkgs, - system, - inputs, + pkgs ? import , + system ? builtins.currentSystem, + inputs ? { self = import ./flake.nix; }, }: pkgs.mkShell { packages = with pkgs; []; - inputsFrom = with inputs.self.legacyPackages.${system}; [ backend web native ]; + inputsFrom = with inputs.self.outputs.legacyPackages.${system}; [ backend web native ]; }