summaryrefslogtreecommitdiff
path: root/templates/full/nix/shell.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-16 21:18:46 -0400
committerseth <[email protected]>2024-10-16 23:23:33 -0400
commit19b64bed1e31489de83f0c7d1b0ec1e77e3f7c49 (patch)
treeab2d101836db1d44f09996a9bea7469dfe2ec80d /templates/full/nix/shell.nix
parent43d30b3ea28ab03a2e6da5101dc2b84918f18c51 (diff)
templates: cleanup
Diffstat (limited to 'templates/full/nix/shell.nix')
-rw-r--r--templates/full/nix/shell.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/templates/full/nix/shell.nix b/templates/full/nix/shell.nix
deleted file mode 100644
index 680c875..0000000
--- a/templates/full/nix/shell.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- perSystem =
- { pkgs, self', ... }:
- {
- devShells = {
- default = pkgs.mkShell {
- packages = [ self'.formatter ];
-
- inputsFrom = [ self'.packages.hello ];
- };
- };
- };
-}