
- drop treefmt, accessible via `nix fmt` - drop mkdocs, accessible via `inv mkdocs` this halves the size of the devshell
17 lines
307 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|