Changes
1 changed files (+18/-10)
-
-
@@ -44,14 +44,11 @@devShells = forEachSystems ( { pkgs, system }: { default = pkgs.mkShell { buildInputs = [ (pkgs.lib.lists.remove pkgs.zig.hook packages.${system}.gtk.nativeBuildInputs) packages.${system}.gtk.buildInputs ]; packages = with pkgs; [ let dev-packages = pkgs: with pkgs; [ # > Zig LSP implementation + Zig Language Server # https://github.com/zigtools/zls zls
-
@@ -72,8 +69,19 @@# > Official formatter for Nix code # https://github.com/NixOS/nixfmt nixfmt ]; }; ] ++ (pkgs.lib.lists.remove pkgs.zig.hook packages.${system}.gtk.nativeBuildInputs) ++ packages.${system}.gtk.buildInputs; in { default = pkgs.mkShell { packages = dev-packages pkgs; }; fhs-fish = (pkgs.buildFHSEnv { name = "devshell-fhs-fish"; targetPkgs = dev-packages; runScript = "fish"; }).env; } ); };
-