infra/shells/default/default.nix
Skyler Grey 24bf8788de
feat: add default shell
We're starting to need a few packages which people are less likely to
have on their system. Let's provide an environment where everyone can
quickly install everything we need.
2024-05-28 23:44:14 +00:00

12 lines
177 B
Nix

{
mkShell,
reuse,
deploy-rs,
}:
mkShell {
packages = [
reuse # Used to provide licenses & copyright attribution
deploy-rs # Used to deploy to our servers
];
}