mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
24 lines
397 B
Nix
24 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
|
||
|
;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|