infra/shell.nix
2023-04-11 15:03:04 +10:00

22 lines
414 B
Nix

{
perSystem = { config, pkgs, ... }: {
devShells = {
default = with pkgs; mkShellNoCC {
buildInputs = [
jq
sops
ssh-to-age
(python3.withPackages (
p: [
p.deploykit
p.invoke
p.requests
]
))
rsync
config.treefmt.build.wrapper
];
};
};
};
}