diff options
author | Attila Lendvai <attila@lendvai.name> | 2022-05-26 15:07:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-04 00:11:44 +0200 |
commit | 7901639d244b203e673b0f59a28877d5710c9703 (patch) | |
tree | fbbc02ca34384eff1e7f12a3270efde905aafd66 /gnu/services/dns.scm | |
parent | 4b99360b8be6d7679fb6b3823c20c053fb02f45d (diff) |
services: ddclient: No need to import (ice-9 rdelim) from the host.
* gnu/services/dns.scm (ddclient-activation): Remove (ice-9 rdelim) from the
with-imported-modules form.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/services/dns.scm')
-rw-r--r-- | gnu/services/dns.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/services/dns.scm b/gnu/services/dns.scm index a220b33f15..50753b7ab6 100644 --- a/gnu/services/dns.scm +++ b/gnu/services/dns.scm @@ -978,8 +978,7 @@ manually.") (define (ddclient-activation config) "Return the activation GEXP for CONFIG." - (with-imported-modules '((guix build utils) - (ice-9 rdelim)) + (with-imported-modules '((guix build utils)) #~(begin (use-modules (guix build utils) (ice-9 rdelim)) |