summaryrefslogtreecommitdiff
path: root/templates/full/nix/shell.nix
diff options
context:
space:
mode:
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 ];
- };
- };
- };
-}