dotfiles/parts/config/devshells.nix

20 lines
349 B
Nix
Raw Normal View History

2025-01-18 03:50:54 -06:00
{ pkgs, config, ... }:
{
2024-10-06 15:25:05 -05:00
devShells = {
default = pkgs.mkShell {
packages = builtins.attrValues {
2025-01-18 03:50:54 -06:00
inherit (pkgs)
age
just
nil
nixd
sops
ssh-to-age
nixfmt-rfc-style
;
2024-10-06 15:25:05 -05:00
};
2025-01-16 16:14:09 -06:00
shellHook = "${config.pre-commit.installationScript}";
2024-10-06 15:25:05 -05:00
};
};
}