org.osbuild.wsl-distribution.conf
Configure distribution settings in Windows Subsystem for Linux.
The stage configures the WSL distribution settings on the system.
Schema 1
{}
Schema 2
{
"options": {
"additionalProperties": false,
"description": "WSL distribution configuration.",
"properties": {
"oobe": {
"type": "object",
"description": "Configures the [oobe] section.",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"default_uid": {
"type": "integer",
"default": 1000,
"description": "Default login UID."
},
"default_name": {
"type": "string",
"description": "Name of the distribution."
}
}
},
"shortcut": {
"type": "object",
"description": "Configures the [shortcut] section.",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable a shortcut icon."
},
"icon": {
"type": "string",
"description": "Path of the shortcut icon."
}
}
}
}
}
}