25 lines
346 B
Nix
25 lines
346 B
Nix
|
{
|
||
|
mkShell,
|
||
|
nodePackages,
|
||
|
astro-language-server,
|
||
|
pnpm,
|
||
|
nixfmt-rfc-style,
|
||
|
deadnix,
|
||
|
statix,
|
||
|
nil,
|
||
|
}:
|
||
|
mkShell {
|
||
|
name = "astro";
|
||
|
packages = builtins.attrValues {
|
||
|
inherit (nodePackages) nodejs prettier;
|
||
|
inherit
|
||
|
astro-language-server
|
||
|
pnpm
|
||
|
nixfmt-rfc-style
|
||
|
deadnix
|
||
|
statix
|
||
|
nil
|
||
|
;
|
||
|
};
|
||
|
}
|