mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-15 20:15:12 -05:00
23 lines
397 B
Nix
23 lines
397 B
Nix
{pkgs, ...}: {
|
|
devShells = {
|
|
default = pkgs.mkShell {
|
|
packages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
alejandra
|
|
just
|
|
nil
|
|
;
|
|
inherit
|
|
(pkgs.elmPackages)
|
|
elm
|
|
elm-format
|
|
elm-land
|
|
elm-language-server
|
|
elm-review
|
|
elm-test
|
|
;
|
|
};
|
|
};
|
|
};
|
|
}
|