infra/config/games/valheim.nix

17 lines
335 B
Nix
Raw Normal View History

2023-05-06 06:49:46 +02:00
{lib, ...}: {
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"valheim-server"
"steamworks-sdk-redist"
];
services.valheim = {
enable = true;
crossplay = true;
openFirewall = true;
password = "hunter2";
serverName = "Nixheim";
worldName = "Owoheim";
};
}