From b6d500cc53700a2bd90e8291afd2051519341da3 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Thu, 26 Dec 2024 01:24:49 -0800 Subject: [PATCH] feat: remove viminal from devshell --- flake.nix | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/flake.nix b/flake.nix index 9a081d2..0300468 100755 --- a/flake.nix +++ b/flake.nix @@ -205,25 +205,19 @@ perSystem = { pkgs, - system, ... }: { formatter = pkgs.nixfmt-rfc-style; devShells.default = pkgs.mkShell { - buildInputs = - with pkgs; - [ - nixd - nixfmt-rfc-style - prettierd - taplo - marksman - ] - ++ [ - inputs.viminal.packages.${system}.default - ]; + buildInputs = with pkgs; [ + nixd + nixfmt-rfc-style + prettierd + taplo + marksman + ]; }; }; };