summaryrefslogtreecommitdiff
path: root/templates/full/nix/shell.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-22 01:33:17 -0400
committerseth <[email protected]>2024-05-22 16:21:31 -0600
commit3e36384575ff720f073bc24a0b3bfad9f0141268 (patch)
tree880afa4d821087fc995a9e512c1d6290ed812cb8 /templates/full/nix/shell.nix
parentabde8d6e3ac86811d4333f5491a08576db013dfc (diff)
templates/full: minor cleanup
Diffstat (limited to 'templates/full/nix/shell.nix')
-rw-r--r--templates/full/nix/shell.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/full/nix/shell.nix b/templates/full/nix/shell.nix
new file mode 100644
index 0000000..66cd1a4
--- /dev/null
+++ b/templates/full/nix/shell.nix
@@ -0,0 +1,17 @@
+{
+ perSystem = {
+ pkgs,
+ self',
+ ...
+ }: {
+ devShells = {
+ default = pkgs.mkShell {
+ packages = [
+ self'.formatter
+ ];
+
+ inputsFrom = [self'.packages.hello];
+ };
+ };
+ };
+}