fix(services): features.API set to true and readOnly

This commit is contained in:
Johannes Kirschbauer
2025-05-06 18:58:40 +02:00
parent cbd7157cfc
commit 7d55511d6f

View File

@@ -255,7 +255,9 @@ in
{ {
options.API = mkOption { options.API = mkOption {
type = types.bool; type = types.bool;
default = false; # This is read only, because we don't support turning it off yet
readOnly = true;
default = true;
description = '' description = ''
Enables automatic API schema conversion for the interface of this module. Enables automatic API schema conversion for the interface of this module.
''; '';