mirror of
https://github.com/versia-pub/server.git
synced 2025-12-07 00:48:18 +01:00
fix: 🐛 Fix NixOS module definitions
This commit is contained in:
parent
765348c440
commit
d46befbd1d
|
|
@ -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.";
|
||||
};
|
||||
};
|
||||
};
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue