osbuild2: add X11Keymap option to KeymapStageOptions
This was introduced in osbuild but not yet exposed.
This commit is contained in:
parent
f7fb727847
commit
86f3ae55e4
1 changed files with 6 additions and 1 deletions
|
|
@ -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() {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue