9 lines
335 B
Nix
9 lines
335 B
Nix
{config, values, pkgs, ...}:
|
|
{
|
|
services.bluemap = {
|
|
enable = true;
|
|
eula = true;
|
|
defaultWorld = "/var/lib/bluemap/vanilla/";
|
|
};
|
|
systemd.services."render-bluemap-maps".preStart = "rsync -e 'ssh -i ${config.sops.secrets."?".path}' root@innovation.pvv.ntnu.no:/var/backups/minecraft/current/ /var/lib/bluemap/vanilla/";
|
|
} |