1
Fork 0

Switch Azedia from resolved to avahi.

This commit is contained in:
Bauke 2023-10-16 13:43:18 +02:00
parent 9d95b34521
commit 9a53b3a8b2
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 10 additions and 26 deletions

View File

@ -8,9 +8,16 @@
};
services = {
openssh.enable = true;
avahi = {
enable = true;
nssmdns = true;
publish = {
addresses = true;
domain = true;
enable = true;
};
};
# Enable `resolved` so the `<hostname>.local` domain works.
resolved.enable = true;
openssh.enable = true;
};
}

View File

@ -39,29 +39,6 @@
networking = {
hostName = "azedia";
firewall = {
# * 22 is for SSH.
# * 53, 5353 and 5355 are for `resolved` so we can access the server via
# the `<hostname>.local` domain. Maybe not all of the ports are needed
# but having them all makes it work.
# * 80 and 443 are for Caddy HTTP and HTTPS access respectively.
allowedTCPPorts = [ 22 53 5353 5355 80 443 ];
allowedUDPPorts = [ 22 53 5353 5355 80 443 ];
};
# It probably isn't necessary to manually set the IPs but do it anyway just
# in case if something else gets messed up they at least stay the same. Both
# IPs are the original ones that were automatically assigned.
interfaces.wlan0.ipv4.addresses = [{
address = "192.168.0.202";
prefixLength = 24;
}];
interfaces.wlan0.ipv6.addresses = [{
address = "2a02:1810:9c2d:6b00:afd9:d79c:644d:f12f";
prefixLength = 64;
}];
wireless = {
enable = true;
# The "wireless.env" should have "HOME_SSID=name" and "HOME_PSK=password"