mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
feat: remove viminal from devshell
This commit is contained in:
parent
1024c2e72c
commit
b6d500cc53
1 changed files with 7 additions and 13 deletions
20
flake.nix
20
flake.nix
|
@ -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
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue