infra/config/games/valheim.nix

19 lines
341 B
Nix
Raw Normal View History

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