infra/dev/shell.nix
zowoq a060248b95 shell, treefmt: move into /dev
keeps the repo root tidy
2023-05-18 01:17:21 +00:00

16 lines
275 B
Nix

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