mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 21:19:45 +01:00
tests: vscode passes all tests
Signed-off-by: Reputable2722 <153411261+Reputable2772@users.noreply.github.com>
This commit is contained in:
parent
c802fa310e
commit
1779d6bd76
1 changed files with 9 additions and 2 deletions
|
@ -253,18 +253,25 @@ in {
|
|||
example = false;
|
||||
description = ''
|
||||
Whether extensions can be installed or updated manually
|
||||
or by Visual Studio Code. This option is effective only
|
||||
when there is a single profile (i.e. default).
|
||||
or by Visual Studio Code. Mutually exclusive to
|
||||
programs.vscode.profiles.
|
||||
'';
|
||||
};
|
||||
|
||||
profiles = mkOption {
|
||||
type = types.listOf (profileType true);
|
||||
default = [ ];
|
||||
description = ''
|
||||
A list of all VSCode profiles. Mutually exclusive
|
||||
to programs.vscode.mutableExtensionsDir
|
||||
'';
|
||||
};
|
||||
defaultProfile = mkOption {
|
||||
type = profileType false;
|
||||
default = { };
|
||||
description = ''
|
||||
The default VSCode profile.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue