summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/doc/manual/release-notes/rl-2605.section.md2
-rw-r--r--nixos/modules/tasks/network-interfaces.nix8
2 files changed, 4 insertions, 6 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2605.section.md b/nixos/doc/manual/release-notes/rl-2605.section.md
index fa13d6c7c4f6..a577291b54c1 100644
--- a/nixos/doc/manual/release-notes/rl-2605.section.md
+++ b/nixos/doc/manual/release-notes/rl-2605.section.md
@@ -48,6 +48,8 @@
- `services.tandoor-recipes` now uses a sub-directory for media files by default starting with `26.05`. Existing setups should move media files out of the data directory and adjust `services.tandoor-recipes.extraConfig.MEDIA_ROOT` accordingly. See [Migrating media files for pre 26.05 installations](#module-services-tandoor-recipes-migrating-media).
+- The packages `iw` and `wirelesstools` (`iwconfig`, `iwlist`, etc.) are no longer installed implicitly if wireless networking has been enabled.
+
- `services.kubernetes.addons.dns.coredns` has been renamed to `services.kubernetes.addons.dns.corednsImage` and now expects a
package instead of attrs. Now, by default, nixpkgs.coredns in conjunction with dockerTools.buildImage is used, instead
of pulling the upstream container image from Docker Hub. If you want the old behavior, you can set:
diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix
index 92c151142215..61c716d6db07 100644
--- a/nixos/modules/tasks/network-interfaces.nix
+++ b/nixos/modules/tasks/network-interfaces.nix
@@ -1770,13 +1770,9 @@ in
environment.corePackages = [
pkgs.host
- pkgs.hostname-debian
+ pkgs.hostname
pkgs.iproute2
- pkgs.iputils
- ]
- ++ optionals config.networking.wireless.enable [
- pkgs.wirelesstools # FIXME: obsolete?
- pkgs.iw
+ pkgs.iputils # ping
]
++ bridgeStp;