mirror of
https://gitlab.com/upRootNutrition/resume.git
synced 2025-06-15 17:15:11 -05:00
27 lines
458 B
Nix
27 lines
458 B
Nix
![]() |
{
|
||
|
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}";
|
||
|
};
|
||
|
}
|