dotfiles/parts/config/devshells.nix
2025-10-03 01:51:15 -05:00

18 lines
324 B
Nix
Executable file

{ pkgs, config, ... }:
{
devShells = {
default = pkgs.mkShell {
packages = builtins.attrValues {
inherit (pkgs)
age
just
nil
sops
ssh-to-age
nixfmt
;
};
shellHook = "${config.pre-commit.installationScript}";
};
};
}