From eb340ef5ca61fe4461d71981a9a81269069901f0 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sun, 19 May 2024 23:39:54 +0200 Subject: [PATCH] Install better-comments for vscode --- modules/home/vscode.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/home/vscode.nix b/modules/home/vscode.nix index d363a2f..99ddad0 100644 --- a/modules/home/vscode.nix +++ b/modules/home/vscode.nix @@ -16,14 +16,15 @@ vscode = pkgs.vscodium; vscodeExtensions = let - open-ext = inputs.nix-vscode-extensions.extensions.${pkgs.system}.open-vsx; + open-vsx = inputs.nix-vscode-extensions.extensions.${pkgs.system}.open-vsx; in [ - open-ext.jnoortheen.nix-ide - open-ext.yzhang.markdown-all-in-one + open-vsx.jnoortheen.nix-ide + open-vsx.yzhang.markdown-all-in-one + open-vsx.aaron-bond.better-comments - open-ext.github.github-vscode-theme - open-ext.pkief.material-icon-theme + open-vsx.github.github-vscode-theme + open-vsx.pkief.material-icon-theme ]; }; };