diff --git a/internal/osbuild1/keymap_stage.go b/internal/osbuild1/keymap_stage.go index 7c213f0ab..50d80a329 100644 --- a/internal/osbuild1/keymap_stage.go +++ b/internal/osbuild1/keymap_stage.go @@ -1,7 +1,12 @@ package osbuild1 +type X11Keymap struct { + Layouts []string `json:"layouts"` +} + type KeymapStageOptions struct { - Keymap string `json:"keymap"` + Keymap string `json:"keymap"` + X11Keymap *X11Keymap `json:"x11-keymap,omitempty"` } func (KeymapStageOptions) isStageOptions() {}