feat: init

This commit is contained in:
Nick 2024-11-10 22:55:49 -06:00
parent be12403f13
commit 7145b8a9fa
21 changed files with 591 additions and 9 deletions

27
parts/config/devshells.nix Executable file
View file

@ -0,0 +1,27 @@
{
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
;
};
};
};
}