summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2025-06-06 18:30:27 +0200
committerLudovic Courtès <ludo@gnu.org>2025-06-06 18:30:27 +0200
commit5a0271c43f6b1978c0c2c925bc46b1e3c08d6d8e (patch)
tree3415d69c1b4729635beff79efacdf0d44286443c
parent33ec2f58ffb66da80e32854d27e5be376365ad69 (diff)
services: iwd: Use the official name.
* gnu/services/networking.scm (iwd-shepherd-service): Fix name and mention “iwd” in ‘description’. * doc/guix.texi (Networking Setup): Correct iwd’s name and add link. Change-Id: I7605488f2018b8ac60664c6617a82f05ddadf6ec
-rw-r--r--doc/guix.texi8
-rw-r--r--gnu/services/networking.scm6
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index be51ca00d25..eb55d337f57 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -22408,11 +22408,11 @@ List of additional command-line arguments to pass to the daemon.
@end table
@end deftp
-@cindex IWD, Internet Wireless Daemon
+@cindex iwd, iNet Wireless Daemon
@defvar iwd-service-type
-This is the service type to run @acronym{IWD,Internet Wireless Daemon},
-a wireless daemon required to authenticate against encrypted WiFi
-networks.
+This is the service type to run iwd, the
+@uref{https://iwd.wiki.kernel.org/, iNet Wireless Daemon}, a daemon
+required to authenticate against encrypted WiFi networks.
@end defvar
@quotation Warning
diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm
index adf2ac7a7de..4bda1029867 100644
--- a/gnu/services/networking.scm
+++ b/gnu/services/networking.scm
@@ -2307,7 +2307,7 @@ PHYs names that IWD will not manage.")
shepherd-requirement shepherd-provision)
(list (shepherd-service
- (documentation "Run Internet Wireless Daemon")
+ (documentation "Run the iNet Wireless Daemon, iwd.")
(provision shepherd-provision)
(requirement `(user-processes dbus-system loopback ,@shepherd-requirement))
(start #~(make-forkexec-constructor
@@ -2347,8 +2347,8 @@ PHYs names that IWD will not manage.")
add-iwd-package)))
(default-value (iwd-configuration))
(description
- "Run @url{https://iwd.wiki.kernel.org/,Iwd},
-a network connection manager."))))
+ "Run the iNet Wireless Daemon,
+@url{https://iwd.wiki.kernel.org/,iwd}, a network connection manager."))))
;;;