15 lines
321 B
Nix
15 lines
321 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
services.factorio = {
|
||
|
enable = true;
|
||
|
admins = [ ];
|
||
|
username = "AGB";
|
||
|
password = "Je vais voter pour le club réseau";
|
||
|
description = "This is a test and it will break";
|
||
|
game-name = "Factorio for AGB";
|
||
|
openFirewall = true;
|
||
|
};
|
||
|
|
||
|
networking.firewall.allowedUDPPorts = [ 34197 ];
|
||
|
}
|