fix: 🐛 Fix NixOS module definitions

This commit is contained in:
Jesse Wierzbinski 2025-04-15 18:11:14 +02:00
parent 765348c440
commit d46befbd1d
No known key found for this signature in database

View file

@ -47,7 +47,7 @@ in {
nodes = {
api = mkOption {
type = lib.types.attrsOf lib.types.submodule {
type = lib.types.attrsOf (lib.types.submodule {
options = {
configOverrides = mkOption {
type = lib.types.submodule {
@ -57,10 +57,10 @@ in {
description = "Overrides for the node's configuration file.";
};
};
};
});
};
worker = mkOption {
type = lib.types.attrsOf lib.types.submodule {
type = lib.types.attrsOf (lib.types.submodule {
options = {
configOverrides = mkOption {
type = lib.types.submodule {
@ -70,7 +70,7 @@ in {
description = "Overrides for the node's configuration file.";
};
};
};
});
};
};