snowflake/hosts/sora/services/factorio.nix

13 lines
243 B
Nix
Raw Normal View History

2024-07-17 23:53:21 -04:00
{pkgs, ...}: {
2023-12-28 21:43:46 -05:00
services.factorio = {
2024-07-17 23:53:21 -04:00
enable = true;
package = pkgs.factorio-headless;
2023-12-28 21:43:46 -05:00
public = false;
lan = false;
openFirewall = true;
admins = ["notoh"];
game-name = "forsen";
autosave-interval = 20;
};
}