nix: improve devshell
This commit is contained in:
parent
b361cdfcc7
commit
8c3becf843
1 changed files with 4 additions and 4 deletions
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
pkgs,
|
||||
system,
|
||||
inputs,
|
||||
pkgs ? import <nixpkgs>,
|
||||
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 ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue