about summary refs log tree commit diff
path: root/home/terraform
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-09-04 11:24:52 -0700
committerFranck Cuny <franck@fcuny.net>2022-09-04 11:24:52 -0700
commitc0cf4c1d3c80d014391efcfbd6ce9a82267426ad (patch)
tree9c0486446e2aea03a3e7890bcd544f2b78143580 /home/terraform
parentfeat(rust): add an overlay to install rust (diff)
downloadworld-c0cf4c1d3c80d014391efcfbd6ce9a82267426ad.tar.gz
feat(home/terraform): install the LSP server
Change-Id: I436d66239d25e69e90c43c036afde5dd3bf18915
Diffstat (limited to 'home/terraform')
-rw-r--r--home/terraform/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/home/terraform/default.nix b/home/terraform/default.nix
index 0358ca9..b307bd7 100644
--- a/home/terraform/default.nix
+++ b/home/terraform/default.nix
@@ -6,5 +6,8 @@ in
     enable = mkEnableOption "terraform configuration";
   };
 
-  config.home.packages = with pkgs; lib.mkIf cfg.enable ([ terraform ]);
+  config.home.packages = with pkgs; lib.mkIf cfg.enable ([
+    terraform
+    terraform-ls # official lsp-server
+  ]);
 }