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