11 lines
333 B
Nix
11 lines
333 B
Nix
|
{ pkgs, lib, config, ... }:
|
||
|
{
|
||
|
config = {
|
||
|
# Allow mpd control from home assistant and phone
|
||
|
networking.firewall.extraCommands = ''
|
||
|
iptables -A nixos-fw -p tcp -m tcp --dport 6600 -s 192.168.7.53 -j nixos-fw-accept
|
||
|
iptables -A nixos-fw -p tcp -m tcp --dport 6600 -s 192.168.7.92 -j nixos-fw-accept
|
||
|
'';
|
||
|
};
|
||
|
}
|