MyNixOS website logo
option

programs.vscode.profiles.<name>.userTasks

Configuration written to Visual Studio Code's tasks.json. This can be a JSON object or a path to a custom JSON file.

Declarations
Type
absolute path or JSON value
Default
{ }
Example
{
  version = "2.0.0";
  tasks = [
    {
      type = "shell";
      label = "Hello task";
      command = "hello";
    }
  ];
}
Sign in to create a configuration using this setting.