diff --git a/flake.nix b/flake.nix index 5f03ecf..3170a94 100644 --- a/flake.nix +++ b/flake.nix @@ -46,25 +46,30 @@ in { devShells = forEachSupportedSystem ({ pkgs }: { - default = pkgs.mkShell { - packages = with pkgs; [ format update ]; + terraform = pkgs.mkShell { + packages = with pkgs; [ + terraform + ]; }; + # default = pkgs.mkShell { + # packages = with pkgs; [ format update ]; + # }; }); - packages = forEachSupportedSystem ({ pkgs }: rec { - default = dvt; - inherit (pkgs) dvt; - }); - } - - // - - { - templates = { - terraform = { - path = ./terraform; - description = "Terraform development environment"; - }; - }; + # packages = forEachSupportedSystem ({ pkgs }: rec { + # default = dvt; + # inherit (pkgs) dvt; + # }); }; + + # // + + # { + # templates = { + # terraform = { + # path = ./terraform; + # description = "Terraform development environment"; + # }; + # }; + # }; }