From 9c074af6cd40ad141a46f32a348508f6eb444794 Mon Sep 17 00:00:00 2001 From: _cry64 Date: Sun, 14 Dec 2025 10:07:18 +1000 Subject: [PATCH] fix specialArgs should be {} not [] --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 6c126ac..b498dfc 100644 --- a/flake.nix +++ b/flake.nix @@ -112,7 +112,7 @@ modules = node.modules; # nix passes these to every single module - specialArgs = [] // node.modules.specialArgs; + specialArgs = {} // node.modules.specialArgs; } );