osbuild2: add X11Keymap option to KeymapStageOptions

This was introduced in osbuild but not yet exposed.
This commit is contained in:
Christian Kellner 2022-02-24 16:41:36 +01:00 committed by Achilleas Koutsou
parent f7fb727847
commit 86f3ae55e4

View file

@ -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() {}