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