Merge remote-tracking branch 'ni/master'
This commit is contained in:
commit
f227bcea9e
@ -27,8 +27,6 @@
|
|||||||
pkgs.rocm-opencl-runtime
|
pkgs.rocm-opencl-runtime
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.video.hidpi.enable = true;
|
|
||||||
|
|
||||||
networking.wireless.enable = true;
|
networking.wireless.enable = true;
|
||||||
networking.wireless.interfaces = [
|
networking.wireless.interfaces = [
|
||||||
"wlp1s0"
|
"wlp1s0"
|
||||||
|
@ -9,10 +9,14 @@ in {
|
|||||||
tv.iptables.extra.nat.OUTPUT = [
|
tv.iptables.extra.nat.OUTPUT = [
|
||||||
"-o lo -p tcp --dport 11423 -j REDIRECT --to-ports 22"
|
"-o lo -p tcp --dport 11423 -j REDIRECT --to-ports 22"
|
||||||
];
|
];
|
||||||
tv.iptables.extra4.nat.PREROUTING = [
|
tv.iptables.extra4.nat.PREROUTING =
|
||||||
"-d ${cfg.host.nets.retiolum.ip4.addr} -p tcp --dport 22 -j ACCEPT"
|
map
|
||||||
"-d ${cfg.host.nets.wiregrill.ip4.addr} -p tcp --dport 22 -j ACCEPT"
|
(net: "-d ${net.ip4.addr} -p tcp --dport 22 -j ACCEPT")
|
||||||
];
|
(filter (net: net.ip4 != null)
|
||||||
|
[
|
||||||
|
cfg.host.nets.retiolum
|
||||||
|
cfg.host.nets.wiregrill
|
||||||
|
]);
|
||||||
tv.iptables.extra6.nat.PREROUTING = [
|
tv.iptables.extra6.nat.PREROUTING = [
|
||||||
"-d ${cfg.host.nets.retiolum.ip6.addr} -p tcp --dport 22 -j ACCEPT"
|
"-d ${cfg.host.nets.retiolum.ip6.addr} -p tcp --dport 22 -j ACCEPT"
|
||||||
"-d ${cfg.host.nets.wiregrill.ip6.addr} -p tcp --dport 22 -j ACCEPT"
|
"-d ${cfg.host.nets.wiregrill.ip6.addr} -p tcp --dport 22 -j ACCEPT"
|
||||||
|
Loading…
Reference in New Issue
Block a user