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

Document: {
	v1: #V1
}