mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
handle vscode nix extension rename
This commit is contained in:
parent
a05bdb3ee2
commit
f82377e375
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@ in
|
|||
(vscode-with-extensions.override {
|
||||
vscode = vscodium;
|
||||
vscodeExtensions = with pkgs.vscode-extensions; [
|
||||
bbenoist.Nix
|
||||
# package was renamed from "Nix" to "nix" between 21.05 and 21.11
|
||||
(if (builtins.elem "nix" (builtins.attrNames bbenoist)) then bbenoist.nix else bbenoist.Nix)
|
||||
ms-python.python
|
||||
ms-vscode.cpptools
|
||||
ms-azuretools.vscode-docker
|
||||
|
|
Loading…
Reference in a new issue