guix_mirror_bot pushed a commit to branch master
in repository guix.
commit d2d961b76a5be75cb715dd9445afd65f44da616f
Author: Ashish SHUKLA <[email protected]>
AuthorDate: Fri Jun 6 13:04:01 2025 +0200
services: iwd: Fix expression.
This is a follow-up to c4e1081f82c4f45e34cf6aca1e3f3347dd384c79. The return
value of ‘iwd-environment’ wasn't quoted.
* gnu/services/networking.scm (iwd-environment): Return list in a
G-expression.
Change-Id: I5c2fb9ecd5d5c1aa61bd7758b66c7284f6e568b3
Signed-off-by: Hilton Chain <[email protected]>
Fixes: https://codeberg.org/guix/guix/issues/450
---
gnu/services/networking.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm
index 0d6c524877..9825e5f75b 100644
--- a/gnu/services/networking.scm
+++ b/gnu/services/networking.scm
@@ -2298,7 +2298,7 @@ PHYs names that IWD will not manage.")
(if (eq? resolver 'resolvconf)
#~(list (string-append "PATH=" #$openresolv "/sbin"))
- '())))
+ #~(list))))
(define (iwd-shepherd-service config)
(match-record config <iwd-configuration>