tests: vscode passes all tests

Signed-off-by: Reputable2722 <153411261+Reputable2772@users.noreply.github.com>
This commit is contained in:
Reputable2722 2024-07-17 22:32:41 +05:30
parent c802fa310e
commit 1779d6bd76
No known key found for this signature in database

View file

@ -253,18 +253,25 @@ in {
example = false; example = false;
description = '' description = ''
Whether extensions can be installed or updated manually Whether extensions can be installed or updated manually
or by Visual Studio Code. This option is effective only or by Visual Studio Code. Mutually exclusive to
when there is a single profile (i.e. default). programs.vscode.profiles.
''; '';
}; };
profiles = mkOption { profiles = mkOption {
type = types.listOf (profileType true); type = types.listOf (profileType true);
default = [ ]; default = [ ];
description = ''
A list of all VSCode profiles. Mutually exclusive
to programs.vscode.mutableExtensionsDir
'';
}; };
defaultProfile = mkOption { defaultProfile = mkOption {
type = profileType false; type = profileType false;
default = { }; default = { };
description = ''
The default VSCode profile.
'';
}; };
}; };