about summary refs log tree commit diff
path: root/nixos/modules/system/activation/bootspec.cue
blob: 3fc9ca381df7718866a61cef858fe44ff5df78e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#V1: {
	init:           string
	initrd?:        string
	initrdSecrets?: string
	kernel:         string
	kernelParams: [...string]
	label:    string
	toplevel: string
	specialisation?: {
		[=~"^"]: #V1
	}
	extensions?: {...}
}

Document: {
	v1: #V1
}