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:
parent
77bd5f86ae
commit
24bf8788de
11
shells/default/default.nix
Normal file
11
shells/default/default.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue