IFD-embracing Nix expression to import pnpm lock files in Nix derivations

chore: format

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>

+8 -5
+8 -5
flake.nix
··· 31 31 in 32 32 { 33 33 formatter = forSystems ({ pkgs, ... }: pkgs.nixfmt-tree); 34 - devShells = forSystems ({pkgs, ...}: { 35 - default = pkgs.mkShell { 36 - packages = with pkgs; [reuse]; 37 - }; 38 - }); 34 + devShells = forSystems ( 35 + { pkgs, ... }: 36 + { 37 + default = pkgs.mkShell { 38 + packages = with pkgs; [ reuse ]; 39 + }; 40 + } 41 + ); 39 42 40 43 legacyPackages = forSystems ({ pkgs, ... }: import ./. { inherit pkgs; }); 41 44