nixfiles/hosts/nullbox/mcserver.nix

8 lines
177 B
Nix

{ pkgs, lib, config, ... }:
{
config = {
fileSystems."/srv/mcserver".options = [ "compress=zstd" "nofail" ];
networking.firewall.trustedInterfaces = [ "wg0" ];
};
}