refactor
This commit is contained in:
parent
b8bf494ac1
commit
ec5d6d0e2a
1 changed files with 22 additions and 17 deletions
37
flake.nix
37
flake.nix
|
@ -46,25 +46,30 @@
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
devShells = forEachSupportedSystem ({ pkgs }: {
|
devShells = forEachSupportedSystem ({ pkgs }: {
|
||||||
default = pkgs.mkShell {
|
terraform = pkgs.mkShell {
|
||||||
packages = with pkgs; [ format update ];
|
packages = with pkgs; [
|
||||||
|
terraform
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
# default = pkgs.mkShell {
|
||||||
|
# packages = with pkgs; [ format update ];
|
||||||
|
# };
|
||||||
});
|
});
|
||||||
|
|
||||||
packages = forEachSupportedSystem ({ pkgs }: rec {
|
# packages = forEachSupportedSystem ({ pkgs }: rec {
|
||||||
default = dvt;
|
# default = dvt;
|
||||||
inherit (pkgs) dvt;
|
# inherit (pkgs) dvt;
|
||||||
});
|
# });
|
||||||
}
|
};
|
||||||
|
|
||||||
//
|
# //
|
||||||
|
|
||||||
{
|
# {
|
||||||
templates = {
|
# templates = {
|
||||||
terraform = {
|
# terraform = {
|
||||||
path = ./terraform;
|
# path = ./terraform;
|
||||||
description = "Terraform development environment";
|
# description = "Terraform development environment";
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue