dotfiles/parts/config/devshells.nix
2025-01-14 16:17:42 -06:00

23 lines
358 B
Nix
Executable file

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