diff --git a/home/vscode.nix b/home/vscode.nix index b95747e..cf53aa7 100644 --- a/home/vscode.nix +++ b/home/vscode.nix @@ -45,5 +45,13 @@ }; "direnv.path.executable" = "${pkgs.direnv}/bin/direnv"; "latex-workshop.latex.outDir" = "%DIR%/out"; + + "terminal.integrated.profiles.linux" = { + "bash" = { + "path" = "${pkgs.bashInteractive}/bin/bash"; + "args" = []; + }; + }; + "terminal.integrated.defaultProfile.linux" = "bash"; }; }