dotfiles/parts/config/devshells.nix

28 lines
510 B
Nix
Raw Normal View History

2025-10-01 19:51:55 -05:00
{ pkgs, config, ... }:
{
devShells = {
default = pkgs.mkShell {
packages = builtins.attrValues {
inherit (pkgs)
age
2025-10-03 21:14:34 -05:00
gitmoji-cli
graphviz
imv
2025-10-01 19:51:55 -05:00
just
2025-10-03 21:14:34 -05:00
just-lsp
litemdview
2025-10-01 19:51:55 -05:00
nil
2025-10-03 21:14:34 -05:00
openssl
pqiv
2025-10-01 19:51:55 -05:00
sops
ssh-to-age
2025-10-03 21:14:34 -05:00
taplo
vscode-langservers-extracted
watchexec
2025-10-01 19:51:55 -05:00
;
};
shellHook = "${config.pre-commit.installationScript}";
};
};
}