From c53ff86cb4edda20f32c019e1b2b1a27b7eb6ccb Mon Sep 17 00:00:00 2001 From: cswimr Date: Mon, 25 Nov 2024 14:21:39 -0500 Subject: [PATCH] fix vscode bugging out --- nixos/environment.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/environment.nix b/nixos/environment.nix index cfc8732..7b427bf 100644 --- a/nixos/environment.nix +++ b/nixos/environment.nix @@ -1,5 +1,6 @@ { lib, ... }: { environment.variables = { + PATH = "$PATH:/etc/nixos/scripts"; EDITOR = "nvim"; VISUAL = "code"; @@ -16,6 +17,6 @@ environment.sessionVariables = { # Enable Ozone Wayland support in Chromium and Electron applications #TODO - This causes issues with VSCode until the November 2024 release. - # NIXOS_OZONE_WL = lib.mkDefault "1"; + NIXOS_OZONE_WL = lib.mkDefault ""; }; }