15 lines
539 B
JavaScript
15 lines
539 B
JavaScript
import { z } from 'zod';
|
|
import { cubes } from '@bitstack/nopy';
|
|
|
|
export default cubes.Manifest({
|
|
id: 'admin:locale',
|
|
name: 'Configure system locale and keyboard layout',
|
|
dependencies: () => [],
|
|
schema: z.object({
|
|
LAYOUT: z.string().describe('Keyboard layout (e.g. "ch", "us", "de")').default('ch'),
|
|
MODEL: z.string().describe('Keyboard model').default('pc105'),
|
|
VARIANT: z.string().describe('Keyboard variant').default(''),
|
|
OPTIONS: z.string().describe('Keyboard options (comma separated)').default(''),
|
|
}),
|
|
});
|