mirror of https://git.jolheiser.com/dotnix.git
13 lines
271 B
Nix
13 lines
271 B
Nix
|
{ inputs, pkgs, ... }:
|
||
|
{
|
||
|
services.foundryvtt = {
|
||
|
enable = true;
|
||
|
hostName = "dnd.jolheiser.com";
|
||
|
minifyStaticFiles = true;
|
||
|
proxyPort = 443;
|
||
|
proxySSL = true;
|
||
|
upnp = false;
|
||
|
package = inputs.foundry.packages.${pkgs.system}.foundryvtt_12;
|
||
|
};
|
||
|
}
|