diff options
Diffstat (limited to 'src/common-utils/devcontainer-feature.json')
-rw-r--r-- | src/common-utils/devcontainer-feature.json | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/common-utils/devcontainer-feature.json b/src/common-utils/devcontainer-feature.json index d2a97d6..05bf067 100644 --- a/src/common-utils/devcontainer-feature.json +++ b/src/common-utils/devcontainer-feature.json @@ -1,7 +1,7 @@ { "id": "common-utils", - "version": "1.2.0", - "name": "Common Debian Utilities", + "version": "2.0.0", + "name": "Common Utilities", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/common-utils", "description": "Installs a set of common command line utilities, Oh My Zsh!, and sets up a non-root user.", "options": { @@ -28,36 +28,37 @@ "username": { "type": "string", "proposals": [ + "devcontainer", "vscode", "codespace", "none", "automatic" ], "default": "automatic", - "description": "Enter name of non-root user to configure or none to skip" + "description": "Enter name of a non-root user to configure or none to skip" }, - "uid": { + "userUid": { "type": "string", "proposals": [ "1000", "automatic" ], "default": "automatic", - "description": "Enter uid for non-root user" + "description": "Enter UID for non-root user" }, - "gid": { + "userGid": { "type": "string", "proposals": [ "1000", "automatic" ], "default": "automatic", - "description": "Enter gid for non-root user" + "description": "Enter GID for non-root user" }, "nonFreePackages": { "type": "boolean", "default": false, - "description": "Add packages from non-free Debian repository?" + "description": "Add packages from non-free Debian repository? (Debian only)" } } } |