This commit is contained in:
Pim Kunis 2023-10-26 14:49:46 +02:00
parent b8bf494ac1
commit ec5d6d0e2a

View file

@ -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";
# };
# };
# };
}