mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
34 lines
579 B
Nix
Executable file
34 lines
579 B
Nix
Executable file
{
|
|
pkgs,
|
|
pkgs-stable,
|
|
...
|
|
}: {
|
|
devShells = {
|
|
default = pkgs.mkShell {
|
|
packages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
alejandra
|
|
just
|
|
nil
|
|
;
|
|
inherit
|
|
(pkgs-stable.elmPackages)
|
|
elm
|
|
elm-format
|
|
elm-land
|
|
elm-language-server
|
|
elm-review
|
|
elm-test
|
|
;
|
|
|
|
inherit
|
|
(pkgs.nodePackages)
|
|
"@commitlint/config-conventional"
|
|
npm
|
|
typescript-language-server
|
|
;
|
|
};
|
|
};
|
|
};
|
|
}
|