18 lines
590 B
YAML
18 lines
590 B
YAML
# SPDX-FileCopyrightText: 2023 Evan James <dalto@fastmail.com>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
---
|
|
$schema: https://json-schema.org/schema#
|
|
$id: https://calamares.io/schemas/initcpiocfg
|
|
additionalProperties: false
|
|
type: object
|
|
properties:
|
|
useSystemdHook: { type: boolean }
|
|
hooks:
|
|
type: object
|
|
additionalProperties: false
|
|
properties:
|
|
prepend: { type: array, items: { type: string } }
|
|
append: { type: array, items: { type: string } }
|
|
remove: { type: array, items: { type: string } }
|
|
source: { type: string }
|