refactor(fmt): group outputs options

This commit is contained in:
Sridhar Ratnakumar 2024-07-09 16:52:09 -04:00
parent a6ec8b3f61
commit 7200b458b5
No known key found for this signature in database

View File

@ -28,7 +28,8 @@
default = "${service}.${name}";
type = lib.types.str;
};
outputs.defaultProcessSettings = lib.mkOption {
outputs = {
defaultProcessSettings = lib.mkOption {
type = lib.types.deferredModule;
internal = true;
readOnly = true;
@ -39,7 +40,7 @@
namespace = lib.mkDefault config.namespace;
};
};
outputs.settings = lib.mkOption {
settings = lib.mkOption {
type = lib.types.lazyAttrsOf lib.types.raw;
internal = true;
description = ''
@ -53,6 +54,7 @@
};
};
};
};
in
{
options = {