diff options
Diffstat (limited to '')
-rw-r--r-- | modules/common/vscode.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/common/vscode.nix b/modules/common/vscode.nix index 0498fea..d90d301 100644 --- a/modules/common/vscode.nix +++ b/modules/common/vscode.nix @@ -1,5 +1,6 @@ { config, + inputs, lib, pkgs, ... @@ -124,12 +125,9 @@ in { ignoreRecommendations = true; }; - terminal = { - external.linuxExec = "${pkgs.alacritty}/bin/alacritty"; - integrated = { - inherit fontFamily fontSize; - enableBell = true; - }; + terminal.integrated = { + inherit fontFamily fontSize; + enableBell = true; }; update = { @@ -233,5 +231,7 @@ in { redhat.telemetry.enabled = false; }; }; + + nixpkgs.overlays = [inputs.nix-vscode-extensions.overlays.default]; }; } |