1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-23 11:39:46 +01:00

vscode: fix name of extension in example (#2759)

This commit is contained in:
Markus Wamser 2022-02-25 00:45:41 +01:00 committed by GitHub
parent 8f7d925503
commit 650cfe60f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -120,7 +120,7 @@ in {
extensions = mkOption { extensions = mkOption {
type = types.listOf types.package; type = types.listOf types.package;
default = [ ]; default = [ ];
example = literalExpression "[ pkgs.vscode-extensions.bbenoist.Nix ]"; example = literalExpression "[ pkgs.vscode-extensions.bbenoist.nix ]";
description = '' description = ''
The extensions Visual Studio Code should be started with. The extensions Visual Studio Code should be started with.
''; '';