diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-11-20 00:43:33 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-11-20 00:43:33 +0100 |
| commit | a641503303dddcc79911232b38117df158fb152d (patch) | |
| tree | a1ddd803c1eb00ec398551b84cc2673543557db6 /home-modules/apps/nvim/default.nix | |
| parent | 892de67a9f64d0b0cdb023d830a019d8feec0a57 (diff) | |
Cleanup and restore of fcixt
Diffstat (limited to '')
| -rw-r--r-- | home-modules/apps/nvim/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home-modules/apps/nvim/default.nix b/home-modules/apps/nvim/default.nix index f45095f..d868580 100644 --- a/home-modules/apps/nvim/default.nix +++ b/home-modules/apps/nvim/default.nix @@ -11,6 +11,7 @@ in { options.homeapps.nvim = { enable = lib.mkEnableOption "Enables neovim configuration"; + lsp = lib.mkEnableOption "Enables LSP Support and the needed servers"; }; config = lib.mkIf config.homeapps.nvim.enable { @@ -44,7 +45,7 @@ in "/home/wilkuu/.npm/bin/" ]; - home.packages = + home.packages = lib.mkIf config.homeapps.nvim.lsp ( with pkgs; [ lua @@ -69,7 +70,6 @@ in ++ [ ts_ls vue_ls - ]; - + ]); }; } |
