mirror of
https://github.com/versia-pub/server.git
synced 2025-12-07 16:58:20 +01:00
fix: 🐛 Fix NixOS module definitions
This commit is contained in:
parent
765348c440
commit
d46befbd1d
|
|
@ -47,7 +47,7 @@ in {
|
||||||
|
|
||||||
nodes = {
|
nodes = {
|
||||||
api = mkOption {
|
api = mkOption {
|
||||||
type = lib.types.attrsOf lib.types.submodule {
|
type = lib.types.attrsOf (lib.types.submodule {
|
||||||
options = {
|
options = {
|
||||||
configOverrides = mkOption {
|
configOverrides = mkOption {
|
||||||
type = lib.types.submodule {
|
type = lib.types.submodule {
|
||||||
|
|
@ -57,10 +57,10 @@ in {
|
||||||
description = "Overrides for the node's configuration file.";
|
description = "Overrides for the node's configuration file.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
});
|
||||||
};
|
};
|
||||||
worker = mkOption {
|
worker = mkOption {
|
||||||
type = lib.types.attrsOf lib.types.submodule {
|
type = lib.types.attrsOf (lib.types.submodule {
|
||||||
options = {
|
options = {
|
||||||
configOverrides = mkOption {
|
configOverrides = mkOption {
|
||||||
type = lib.types.submodule {
|
type = lib.types.submodule {
|
||||||
|
|
@ -70,7 +70,7 @@ in {
|
||||||
description = "Overrides for the node's configuration file.";
|
description = "Overrides for the node's configuration file.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
});
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue