infra/shell.nix
zowoq 486311ad29 shell: refactor, reduce size
- drop treefmt, accessible via `nix fmt`

- drop mkdocs, accessible via `inv mkdocs`

this halves the size of the devshell
2023-05-04 08:38:23 +10:00

17 lines
307 B
Nix

{
perSystem = { pkgs, ... }: {
devShells = {
default = with pkgs; mkShellNoCC {
packages = [
jq
python3.pkgs.deploykit
python3.pkgs.invoke
python3.pkgs.requests
rsync
sops
ssh-to-age
];
};
};
};
}