From a56214aeacb8f51f72d0bf3b02b5159883bc206d Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Fri, 15 Oct 2021 22:49:00 -0400 Subject: [PATCH] vscode: fix SHLVL --- modules/profiles/desktop.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/profiles/desktop.nix b/modules/profiles/desktop.nix index ebb0549..2f60557 100644 --- a/modules/profiles/desktop.nix +++ b/modules/profiles/desktop.nix @@ -102,6 +102,10 @@ in "update.showReleaseNotes" = false; "window.menuBarVisibility" = "hidden"; "workbench.startupEditor" = "none"; + "terminal.integrated.profiles.linux"."bash" = { + "path" = "bash"; + "args" = [ "-c" "unset SHLVL; bash" ]; + }; }; programs.steam.enable = true;