Back to the drawing board I guess

This commit is contained in:
Daniel Flanagan 2024-07-16 16:46:10 -05:00
parent dff621fe42
commit 55530d8b26

View file

@ -350,17 +350,17 @@ in {
services.openssh.listenAddresses = [ services.openssh.listenAddresses = [
{ {
addr = "0.0.0.0"; addr = "[::]";
port = 2201; port = 2201;
} }
{ {
addr = "[::]"; addr = "[::]";
port = 2201; port = 22;
} }
]; ];
systemd.network = { systemd.network = {
enable = true; enable = false;
networks = { networks = {
wan = { wan = {
networkConfig = { networkConfig = {
@ -396,8 +396,8 @@ in {
}; };
services.avahi = { services.avahi = {
enable = true; enable = lib.mkForce false;
reflector = true; reflector = false;
allowInterfaces = [lan_if]; allowInterfaces = [lan_if];
}; };