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.
This commit is contained in:
Skyler Grey 2024-05-28 23:02:23 +00:00
parent 77bd5f86ae
commit 24bf8788de
Signed by: minion
GPG key ID: F27E3E5922772E7A

View file

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