From 8c3becf843dda2fe3aa49bdd491f08ba8f952d2b Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Sat, 6 Jul 2024 09:57:10 +0200 Subject: [PATCH] nix: improve devshell --- shell.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 ]; }