resume/parts/config/devshells.nix
2025-03-24 01:21:46 -05:00

26 lines
458 B
Nix
Executable file

{
pkgs,
config,
...
}:
{
devShells = {
default = pkgs.mkShell {
packages = builtins.attrValues {
inherit (pkgs)
just
nil
typst
tinymist
typstyle
yamlfmt
nixfmt-rfc-style
;
# inherit (pkgs.nodePackages)
# "@commitlint/config-conventional"
# ;
};
};
shellHook = "${config.pre-commit.installationScript}";
};
}