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,25 +205,19 @@
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
[ nixfmt-rfc-style
nixd prettierd
nixfmt-rfc-style taplo
prettierd marksman
taplo ];
marksman
]
++ [
inputs.viminal.packages.${system}.default
];
}; };
}; };
}; };