infrastructure/depot/profiles/gui/mpd.nix

10 lines
145 B
Nix

{ config, lib, ... }:
with lib;
{
network.firewall = {
public.tcp.ports = [ 6600 32101 ];
private.tcp.ports = [ 6600 32101 ];
};
}