Skip to content

Commit 90b20c6

Browse files
Fix missing parentheses
1 parent 83a4001 commit 90b20c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos-modules/valheim.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ in {
315315
]
316316
++ (lib.lists.optional cfg.crossplay "-crossplay")
317317
++ (lib.lists.optional (cfg.logFile != null) "-logFile \"${cfg.logFile}\"")
318-
++ (lib.lists.optional (cfg.preset != null) "-preset \"${cfg.preset}\"")
318+
++ (lib.lists.optional (cfg.preset != null) "-preset \"${cfg.preset}\""));
319319
};
320320
};
321321
};

0 commit comments

Comments
 (0)