From 24bf8788deb12c5e3fae57d30b2a8766c5625174 Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Tue, 28 May 2024 23:02:23 +0000 Subject: [PATCH] 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. --- shells/default/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shells/default/default.nix diff --git a/shells/default/default.nix b/shells/default/default.nix new file mode 100644 index 0000000..d977966 --- /dev/null +++ b/shells/default/default.nix @@ -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 + ]; +}