dotfiles/parts/config/devshells.nix
2024-11-10 01:29:37 -06:00

22 lines
343 B
Nix
Executable file

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