feat: remove default package from devshell
This commit is contained in:
parent
bcf750b685
commit
ede9de046f
1 changed files with 9 additions and 6 deletions
15
flake.nix
15
flake.nix
|
@ -292,12 +292,15 @@
|
|||
default = pkgs.mkShell {
|
||||
name = defaultPackageName;
|
||||
packages =
|
||||
[ defaultPackage ]
|
||||
++ (with pkgs; [
|
||||
lua-language-server
|
||||
nixfmt-rfc-style
|
||||
stylua
|
||||
]);
|
||||
# [ defaultPackage ] ++
|
||||
(
|
||||
with pkgs;
|
||||
[
|
||||
lua-language-server
|
||||
nixfmt-rfc-style
|
||||
stylua
|
||||
]
|
||||
);
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue