infra/shell.nix
2023-05-10 01:00:54 +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
];
};
};
};
}