add terraform and initial programming tools

This commit is contained in:
Noah Masur 2022-06-20 16:14:04 -04:00
parent 74e53a3cd1
commit d0b3be617c
3 changed files with 19 additions and 0 deletions

View File

@ -17,5 +17,7 @@ darwin.lib.darwinSystem {
../../modules/darwin
../../modules/applications/alacritty.nix
../../modules/applications/discord.nix
../../modules/programming/terraform.nix
../../modules/programming/lua.nix
];
}

View File

@ -0,0 +1,8 @@
{ config, pkgs, ... }: {
home-manager.users.${config.user}.home.packages = with pkgs;
[
stylua # Lua formatter
];
}

View File

@ -0,0 +1,9 @@
{ config, pkgs, ... }: {
home-manager.users.${config.user}.home.packages = with pkgs; [
terraform # Terraform executable
terraform-ls # Language server
tflint # Linter
];
}