move shells into shells/ directory

This commit is contained in:
Adithya 2023-12-08 15:16:15 +05:30
parent f66b84607f
commit 2cedfe5274
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
4 changed files with 3 additions and 3 deletions

View file

@ -14,9 +14,9 @@
in in
{ {
devShells = { devShells = {
go = import ./go.nix { inherit pkgs; }; go = import ./shells/go.nix { inherit pkgs; };
python = import ./python.nix { inherit pkgs; }; haskell = import ./shells/haskell.nix { inherit pkgs; };
haskell = import ./haskell.nix { inherit pkgs; }; python = import ./shells/python.nix { inherit pkgs; };
}; };
} }
); );