nix-config/hosts/factorio/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
493 B
Nix
Raw Normal View History

2023-03-09 21:47:10 +01:00
{ ... }:
2022-08-05 19:08:22 +02:00
{
c3d2.deployment.server = "server10";
2022-08-05 19:08:22 +02:00
2022-08-18 23:25:02 +02:00
microvm.mem = 8 * 1024;
2022-08-05 19:08:22 +02:00
networking = {
hostName = "factorio";
};
services = {
factorio = {
enable = true;
admins = [ "SuperSandro2000" ];
autosave-interval = 10;
description = "Keep your Kolle Mate ready!";
game-name = "C3D2 Server";
game-password = "k-otk-ot";
lan = true;
nonBlockingSaving = true;
openFirewall = true;
};
};
system.stateVersion = "22.05";
}