summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to 'machines')
-rw-r--r--machines/enzo/default.nix8
-rw-r--r--machines/kusanagi/desktop.nix15
2 files changed, 0 insertions, 23 deletions
diff --git a/machines/enzo/default.nix b/machines/enzo/default.nix
index 86a05d3..3246ca3 100644
--- a/machines/enzo/default.nix
+++ b/machines/enzo/default.nix
@@ -58,14 +58,6 @@
"hwebs"
];
- # mDNS client: resolve *.local names on the LAN (kusanagi, NAS, etc.).
- # Kusanagi already advertises via Avahi; this side just needs NSS
- # resolution so kusanagi.local resolves without an SSH config hostname.
- services.avahi = {
- enable = true;
- nssmdns4 = true;
- };
-
# Wifi is managed from the CLI (nmcli/nmtui); trim the rest.
networking.modemmanager.enable = false; # no cellular modem
diff --git a/machines/kusanagi/desktop.nix b/machines/kusanagi/desktop.nix
index 8e1eb8c..44b9c81 100644
--- a/machines/kusanagi/desktop.nix
+++ b/machines/kusanagi/desktop.nix
@@ -22,21 +22,6 @@
drivers = with pkgs; [ gutenprint ];
};
- # mDNS: publish kusanagi.local and resolve *.local LAN names.
- # Keep the firewall opening scoped to the Wi-Fi LAN interface.
- networking.firewall.interfaces.wlp8s0.allowedUDPPorts = [ 5353 ];
- services.avahi = {
- enable = true;
- nssmdns4 = true;
- openFirewall = false;
- allowInterfaces = [ "wlp8s0" ];
- publish = {
- enable = true;
- addresses = true;
- workstation = true;
- };
- };
-
# prevent auto-mounting optical disks
services.udisks2.enable = true;