fix(terminal): elemAt arguments inverted

This commit is contained in:
Guz
2026-03-19 15:41:44 -03:00
parent 8ce54a8197
commit 0a78dc0d44

View File

@@ -4,8 +4,8 @@ with lib; {
directories = map (d:
if isList d
then {
directory = elemAt 1 d;
mode = elemAt 0 d;
directory = elemAt d 1;
mode = elemAt d 0;
}
else d) [
["0755" "Documents"]