tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/crossfire-server: remove unnecessary parentheses
figsoda
3 years ago
a356511f
fd4f8656
+3
-3
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
games
crossfire-server.nix
+3
-3
nixos/modules/services/games/crossfire-server.nix
···
131
131
exp_table = "";
132
132
forbid = "";
133
133
metaserver2 = "";
134
134
-
motd = (fileContents "${cfg.package}/etc/crossfire/motd");
135
135
-
news = (fileContents "${cfg.package}/etc/crossfire/news");
136
136
-
rules = (fileContents "${cfg.package}/etc/crossfire/rules");
134
134
+
motd = fileContents "${cfg.package}/etc/crossfire/motd";
135
135
+
news = fileContents "${cfg.package}/etc/crossfire/news";
136
136
+
rules = fileContents "${cfg.package}/etc/crossfire/rules";
137
137
settings = "";
138
138
stat_bonus = "";
139
139
} // cfg.configFiles);