summaryrefslogtreecommitdiff
path: root/modules/valheim.nix
blob: bdfb8134864a8aa3be3e2d66c3f7ba36811fcf44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ config, lib, pkgs, ... }:

let
  cfg = config.orbekk.valheim-server;
  statePath = "/var/lib/${cfg.stateDir}";
in
{
  options = {
    orbekk.valheim-server = {
      enable = lib.mkEnableOption "Enable valheim server";
      programDir = lib.mkOption {
        type = lib.types.str;
        default = null;
      };
      stateDir = lib.mkOption {
        type = lib.types.str;
        default = "valheim";
      };
    };
  };

  config = lib.mkIf cfg.enable {
    systemd.services.valheim-server = {
      description = "Valheim server";
      wantedBy = [ "multi-user.target" ];
      after = [ "network.target" ];
      path = with pkgs; [ steam.run ];

      serviceConfig = {
        DynamicUser = true;
        StateDirectory = cfg.stateDir;
      };

      environment = {
        HOME = statePath;
      };

      script = ''
        cd ${cfg.programDir}
        export templdpath=$LD_LIBRARY_PATH
        export LD_LIBRARY_PATH=./linux64:$LD_LIBRARY_PATH
        export SteamAppId=892970
        steam-run ./valheim_server.x86_64 -name "doomsday" -port 3400 -world "doomsday" -password "$(cat ${statePath}/password.txt)" -savedir ${statePath}
      '';
    };
  };
}