summaryrefslogtreecommitdiff
path: root/nix/lua.nix
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-09-12 22:56:08 +0000
committerAylur <[email protected]>2024-09-12 22:56:08 +0000
commit6fce8da11ac7dad427e4594beffdf60f109768e7 (patch)
tree2c7e8894245ac60f3c2931b2c712c49d0dc2c54e /nix/lua.nix
parent3a057f53a265b2a5530ae4888fb7992cd0180c89 (diff)
fix: widget constructor assigning order
assign children first, so props that depend on them work for example Stack.shown
Diffstat (limited to 'nix/lua.nix')
-rw-r--r--nix/lua.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/lua.nix b/nix/lua.nix
index 0986836..6b0b802 100644
--- a/nix/lua.nix
+++ b/nix/lua.nix
@@ -62,7 +62,7 @@ in
preFixup = ''
gappsWrapperArgs+=(
- --prefix PATH : ${pkgs.lib.makeBinPath extraPackages}
+ --prefix PATH : "${pkgs.lib.makeBinPath extraPackages}"
)
'';
}