infra/shell.nix

24 lines
458 B
Nix
Raw Normal View History

2023-04-06 11:41:44 +10:00
{
perSystem = { config, pkgs, ... }: {
devShells = {
default = with pkgs; mkShellNoCC {
buildInputs = [
jq
sops
ssh-to-age
(python3.withPackages (
p: [
p.deploykit
p.invoke
p.requests
]
))
rsync
2023-04-26 16:19:18 +10:00
config.packages.pages.buildInputs
2023-04-06 11:41:44 +10:00
config.treefmt.build.wrapper
];
};
};
};
}