dotfiles/templates/typst/parts/config/devshells.nix

27 lines
458 B
Nix
Raw Normal View History

2025-03-29 23:08:26 -05:00
{
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"
# ;
2025-03-29 23:08:26 -05:00
};
};
shellHook = "${config.pre-commit.installationScript}";
};
}