summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/games
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-11-30 17:29:36 -0500
committerfigsoda <figsoda@pm.me>2022-11-30 17:29:36 -0500
commita356511f1ade96ba4c7b1adae371693db8ea026b (patch)
tree95a9873a49bd84693f66f77c501dadaa31f45cc6 /nixos/modules/services/games
parentfd4f865645cfba121f2ac6d052786cdf9638b318 (diff)
nixos/crossfire-server: remove unnecessary parentheses
Diffstat (limited to 'nixos/modules/services/games')
-rw-r--r--nixos/modules/services/games/crossfire-server.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/games/crossfire-server.nix b/nixos/modules/services/games/crossfire-server.nix
index 7820a08be40b..0849667e61c9 100644
--- a/nixos/modules/services/games/crossfire-server.nix
+++ b/nixos/modules/services/games/crossfire-server.nix
@@ -131,9 +131,9 @@ in {
exp_table = "";
forbid = "";
metaserver2 = "";
- motd = (fileContents "${cfg.package}/etc/crossfire/motd");
- news = (fileContents "${cfg.package}/etc/crossfire/news");
- rules = (fileContents "${cfg.package}/etc/crossfire/rules");
+ motd = fileContents "${cfg.package}/etc/crossfire/motd";
+ news = fileContents "${cfg.package}/etc/crossfire/news";
+ rules = fileContents "${cfg.package}/etc/crossfire/rules";
settings = "";
stat_bonus = "";
} // cfg.configFiles);