{pkgs, ...}: rec { packages = { fish = pkgs.callPackage ./shell {}; # helix = pkgs.callPackge ./helix {}; kakoune = pkgs.callPackage ./kakoune {}; }; shell = pkgs.mkShell { name = "bloxx-shell"; buildInputs = [packages.fish]; }; module = { config = { environment.systemPackages = [ shell ]; }; }; }