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
|
||||
{
|
||||
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;
|
||||
});
|
||||
}
|
||||
# packages = forEachSupportedSystem ({ pkgs }: rec {
|
||||
# default = dvt;
|
||||
# inherit (pkgs) dvt;
|
||||
# });
|
||||
};
|
||||
|
||||
//
|
||||
# //
|
||||
|
||||
{
|
||||
templates = {
|
||||
terraform = {
|
||||
path = ./terraform;
|
||||
description = "Terraform development environment";
|
||||
};
|
||||
};
|
||||
};
|
||||
# {
|
||||
# templates = {
|
||||
# terraform = {
|
||||
# path = ./terraform;
|
||||
# description = "Terraform development environment";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
}
|
||||
|
|
Reference in a new issue