From 2cedfe5274d56427cd2c04e1e7be4d07582ca17a Mon Sep 17 00:00:00 2001 From: Adithya Nair <adtya@adtya.xyz> Date: Fri, 8 Dec 2023 15:16:15 +0530 Subject: [PATCH] move shells into shells/ directory --- flake.nix | 6 +++--- go.nix => shells/go.nix | 0 haskell.nix => shells/haskell.nix | 0 python.nix => shells/python.nix | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename go.nix => shells/go.nix (100%) rename haskell.nix => shells/haskell.nix (100%) rename python.nix => shells/python.nix (100%) diff --git a/flake.nix b/flake.nix index 6fa00a6..acc3a38 100644 --- a/flake.nix +++ b/flake.nix @@ -14,9 +14,9 @@ in { devShells = { - go = import ./go.nix { inherit pkgs; }; - python = import ./python.nix { inherit pkgs; }; - haskell = import ./haskell.nix { inherit pkgs; }; + go = import ./shells/go.nix { inherit pkgs; }; + haskell = import ./shells/haskell.nix { inherit pkgs; }; + python = import ./shells/python.nix { inherit pkgs; }; }; } ); diff --git a/go.nix b/shells/go.nix similarity index 100% rename from go.nix rename to shells/go.nix diff --git a/haskell.nix b/shells/haskell.nix similarity index 100% rename from haskell.nix rename to shells/haskell.nix diff --git a/python.nix b/shells/python.nix similarity index 100% rename from python.nix rename to shells/python.nix