initial transfer
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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(''),
|
||||
}),
|
||||
});
|
||||
Reference in New Issue
Block a user