dotfiles/parts/config/devshells.nix

24 lines
358 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
pkgs,
config,
...
}: {
devShells = {
default = pkgs.mkShell {
packages = builtins.attrValues {
inherit
(pkgs)
age
alejandra
just
nil
2025-01-14 16:17:42 -06:00
nixd
2024-10-06 15:25:05 -05:00
sops
ssh-to-age
;
};
shellHook = "${config.pre-commit.installationScript}";
};
};
}