curacao: Allow Wake On Lan
This commit is contained in:
parent
6e15aa2ea7
commit
98af492b75
|
@ -1,10 +1,13 @@
|
||||||
{ pkgs, lib, config, ... }:
|
{ pkgs, lib, config, ... }:
|
||||||
{
|
{
|
||||||
config = {
|
config = {
|
||||||
# Allow mpd control from home assistant and phone
|
networking = {
|
||||||
networking.firewall.extraCommands = ''
|
# Allow mpd control from home assistant and phone
|
||||||
iptables -A nixos-fw -p tcp -m tcp --dport 6600 -s 192.168.7.53 -j nixos-fw-accept
|
firewall.extraCommands = ''
|
||||||
iptables -A nixos-fw -p tcp -m tcp --dport 6600 -s 192.168.7.92 -j nixos-fw-accept
|
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
|
||||||
|
'';
|
||||||
|
interfaces.enp3s0.wakeOnLan.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue