vscode-extensions: uniform extension namingconvention
This commit is contained in:
parent
8f85e89c03
commit
9ee8bd1889
3 changed files with 35 additions and 4 deletions
|
@ -555,6 +555,32 @@
|
||||||
6.0.0 to 9.0.0
|
6.0.0 to 9.0.0
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The following Visual Studio Code extensions were renamed to
|
||||||
|
keep the naming convention uniform.
|
||||||
|
</para>
|
||||||
|
<itemizedlist spacing="compact">
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<literal>bbenoist.Nix</literal> ->
|
||||||
|
<literal>bbenoist.nix</literal>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<literal>CoenraadS.bracket-pair-colorizer</literal> ->
|
||||||
|
<literal>coenraads.bracket-pair-colorizer</literal>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<literal>golang.Go</literal> ->
|
||||||
|
<literal>golang.go</literal>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
<section xml:id="sec-release-21.11-notable-changes">
|
<section xml:id="sec-release-21.11-notable-changes">
|
||||||
|
|
|
@ -142,6 +142,11 @@ pt-services.clipcat.enable).
|
||||||
|
|
||||||
- the `mingw-64` package has been upgraded from 6.0.0 to 9.0.0
|
- the `mingw-64` package has been upgraded from 6.0.0 to 9.0.0
|
||||||
|
|
||||||
|
- The following Visual Studio Code extensions were renamed to keep the naming convention uniform.
|
||||||
|
- `bbenoist.Nix` -> `bbenoist.nix`
|
||||||
|
- `CoenraadS.bracket-pair-colorizer` -> `coenraads.bracket-pair-colorizer`
|
||||||
|
- `golang.Go` -> `golang.go`
|
||||||
|
|
||||||
## Other Notable Changes {#sec-release-21.11-notable-changes}
|
## Other Notable Changes {#sec-release-21.11-notable-changes}
|
||||||
|
|
||||||
- The setting [`services.openssh.logLevel`](options.html#opt-services.openssh.logLevel) `"VERBOSE"` `"INFO"`. This brings NixOS in line with upstream and other Linux distributions, and reduces log spam on servers due to bruteforcing botnets.
|
- The setting [`services.openssh.logLevel`](options.html#opt-services.openssh.logLevel) `"VERBOSE"` `"INFO"`. This brings NixOS in line with upstream and other Linux distributions, and reduces log spam on servers due to bruteforcing botnets.
|
||||||
|
|
|
@ -207,7 +207,7 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
bbenoist.Nix = buildVscodeMarketplaceExtension {
|
bbenoist.nix = buildVscodeMarketplaceExtension {
|
||||||
mktplcRef = {
|
mktplcRef = {
|
||||||
name = "Nix";
|
name = "Nix";
|
||||||
publisher = "bbenoist";
|
publisher = "bbenoist";
|
||||||
|
@ -296,7 +296,7 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
CoenraadS.bracket-pair-colorizer = buildVscodeMarketplaceExtension {
|
coenraads.bracket-pair-colorizer = buildVscodeMarketplaceExtension {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
changelog = "https://marketplace.visualstudio.com/items/CoenraadS.bracket-pair-colorizer/changelog";
|
changelog = "https://marketplace.visualstudio.com/items/CoenraadS.bracket-pair-colorizer/changelog";
|
||||||
description = "A customizable extension for colorizing matching brackets";
|
description = "A customizable extension for colorizing matching brackets";
|
||||||
|
@ -708,7 +708,7 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
golang.Go = buildVscodeMarketplaceExtension {
|
golang.go = buildVscodeMarketplaceExtension {
|
||||||
mktplcRef = {
|
mktplcRef = {
|
||||||
name = "Go";
|
name = "Go";
|
||||||
publisher = "golang";
|
publisher = "golang";
|
||||||
|
@ -1518,7 +1518,7 @@ let
|
||||||
|
|
||||||
aliases = self: super: {
|
aliases = self: super: {
|
||||||
# aliases
|
# aliases
|
||||||
ms-vscode = lib.recursiveUpdate super.ms-vscode { inherit (super.golang) Go; };
|
ms-vscode = lib.recursiveUpdate super.ms-vscode { inherit (super.golang) go; };
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: add overrides overlay, so that we can have a generated.nix
|
# TODO: add overrides overlay, so that we can have a generated.nix
|
||||||
|
|
Loading…
Reference in a new issue