From d46befbd1d383b3a29c713e7ced3a0a72c454cde Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Tue, 15 Apr 2025 18:11:14 +0200 Subject: [PATCH] fix: :bug: Fix NixOS module definitions --- nix/module.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/module.nix b/nix/module.nix index db602493..b4e7d69a 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -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."; }; }; - }; + }); }; };