about summary refs log tree commit diff stats
path: root/nix-conf/home
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-09-05 07:54:01 +0100
committerDavid Morgan <djm_uk@protonmail.com>2024-09-05 07:54:01 +0100
commite94febc32250cc9e06e6f2de6a2a2b4d980c24a4 (patch)
tree76bf038aec2b5377d0914c9e9a2de9e87e34c4b6 /nix-conf/home
parentcf736c320b37222ef81694cac554097da0f7597e (diff)
downloaddotfiles-e94febc32250cc9e06e6f2de6a2a2b4d980c24a4.tar.gz
Move LSP_USE_PLISTS to home.sessionVariables
Diffstat (limited to 'nix-conf/home')
-rw-r--r--nix-conf/home/includes/common.nix4
-rw-r--r--nix-conf/home/includes/zsh.nix1
2 files changed, 4 insertions, 1 deletions
diff --git a/nix-conf/home/includes/common.nix b/nix-conf/home/includes/common.nix
index 84bd7ae..9d76f5b 100644
--- a/nix-conf/home/includes/common.nix
+++ b/nix-conf/home/includes/common.nix
@@ -28,6 +28,10 @@ in
     secrets."git_email_config/default" = { };
   };
 
+  home.sessionVariables = {
+    LSP_USE_PLISTS = "true";
+  };
+
   home.packages = with pkgs; [
     hcr
     scr
diff --git a/nix-conf/home/includes/zsh.nix b/nix-conf/home/includes/zsh.nix
index fcec135..505bd2d 100644
--- a/nix-conf/home/includes/zsh.nix
+++ b/nix-conf/home/includes/zsh.nix
@@ -115,7 +115,6 @@ in
       NVM_AUTO_USE = true;
       NVM_LAZY_LOAD = true;
 
-      LSP_USE_PLISTS = true;
       LESS = "-iRXF";
 
       FZF_DEFAULT_COMMAND = ''rg --files --no-ignore --hidden --follow -g \"!{.git,node_modules}/*\" 2> /dev/null'';