about summary refs log tree commit diff
path: root/nixos/modules/system/activation/bootspec.cue
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/system/activation/bootspec.cue')
-rw-r--r--nixos/modules/system/activation/bootspec.cue17
1 files changed, 17 insertions, 0 deletions
diff --git a/nixos/modules/system/activation/bootspec.cue b/nixos/modules/system/activation/bootspec.cue
new file mode 100644
index 0000000000000..3fc9ca381df77
--- /dev/null
+++ b/nixos/modules/system/activation/bootspec.cue
@@ -0,0 +1,17 @@
+#V1: {
+	init:           string
+	initrd?:        string
+	initrdSecrets?: string
+	kernel:         string
+	kernelParams: [...string]
+	label:    string
+	toplevel: string
+	specialisation?: {
+		[=~"^"]: #V1
+	}
+	extensions?: {...}
+}
+
+Document: {
+	v1: #V1
+}