dotfiles/parts/devshells.nix
2024-10-06 15:25:05 -05: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}";
};
};
}