flake-template-hell/templates/astro/flake/shell.nix

25 lines
346 B
Nix
Raw Normal View History

2025-04-07 02:08:46 +01:00
{
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
;
};
}