feat: remove viminal from devshell

This commit is contained in:
Youwen Wu 2024-12-26 01:24:49 -08:00
parent 1024c2e72c
commit b6d500cc53
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -205,24 +205,18 @@
perSystem = perSystem =
{ {
pkgs, pkgs,
system,
... ...
}: }:
{ {
formatter = pkgs.nixfmt-rfc-style; formatter = pkgs.nixfmt-rfc-style;
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
buildInputs = buildInputs = with pkgs; [
with pkgs;
[
nixd nixd
nixfmt-rfc-style nixfmt-rfc-style
prettierd prettierd
taplo taplo
marksman marksman
]
++ [
inputs.viminal.packages.${system}.default
]; ];
}; };
}; };