1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00

vscode: fix invalid examples

This commit is contained in:
natsukium 2022-10-29 10:01:25 +09:00 committed by Robert Helgesson
parent f520832a47
commit 39c1e6704a
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -82,7 +82,7 @@ in {
default = { }; default = { };
example = literalExpression '' example = literalExpression ''
{ {
"files.autoSave" = "off" "files.autoSave" = "off";
"[nix]"."editor.tabSize" = 2; "[nix]"."editor.tabSize" = 2;
} }
''; '';
@ -97,14 +97,14 @@ in {
default = { }; default = { };
example = literalExpression '' example = literalExpression ''
{ {
"version": "2.0.0", version = "2.0.0";
"tasks": [ tasks = [
{ {
"type": "shell", type = "shell";
"label": "Hello task", label = "Hello task";
"command": "hello", command = "hello";
} }
] ];
} }
''; '';
description = '' description = ''