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,
|
pkgs ? import <nixpkgs>,
|
||||||
system,
|
system ? builtins.currentSystem,
|
||||||
inputs,
|
inputs ? { self = import ./flake.nix; },
|
||||||
}:
|
}:
|
||||||
|
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
packages = with pkgs; [];
|
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