diff options
| author | Max Audron <audron@cocaine.farm> | 2024-02-04 17:12:13 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2024-02-04 17:12:13 +0100 |
| commit | 0698120b11595f70972c30891fd6f0bd95d52aad (patch) | |
| tree | 0c435ca7288edb9b1f415cf158b2a35845bfcbd3 /modules/games/default.nix | |
| parent | update ettves & phaenn to nixos 23.11 (diff) | |
add factorio to ettves
Diffstat (limited to '')
| -rw-r--r-- | modules/games/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/games/default.nix b/modules/games/default.nix new file mode 100644 index 0000000..61250cb --- /dev/null +++ b/modules/games/default.nix @@ -0,0 +1,14 @@ +{ config, lib, pkgs, ... }: + +{ + services.factorio = { + enable = true; + package = pkgs.unstable.factorio-headless; + + public = false; + nonBlockingSaving = true; + loadLatestSave = true; + game-name = "cocaine.farm"; + bind = "178.63.224.10"; + }; +} |
