diff options
author | Christopher Baines <mail@cbaines.net> | 2021-02-14 10:55:31 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-02-22 20:44:58 +0000 |
commit | 7c5e5e0e0fbf11ebaaeb8f98ed6c75289ca31795 (patch) | |
tree | 63fbbe19a63be05c8fdd1ab72e356d2c10c71ec5 /gnu/system/hurd.scm | |
parent | 20c08a8a45d0f137ead7c05e720456b2aea44402 (diff) |
system: hurd: Have the static networking provision 'networking.
Some services require networking, I'm looking at the Guix Build Coordinator
agent. Networking seems to work in the childhurd VM, so I think this change
makes sense.
* gnu/system/hurd.scm (%base-services/hurd): Add 'networking to the provision
parameter for the static-networking service.
Diffstat (limited to 'gnu/system/hurd.scm')
-rw-r--r-- | gnu/system/hurd.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm index 8b46e65e31..8f3a27834b 100644 --- a/gnu/system/hurd.scm +++ b/gnu/system/hurd.scm @@ -79,7 +79,7 @@ (list (static-networking (interface "lo") (ip "127.0.0.1") (requirement '()) - (provision '(loopback)) + (provision '(loopback networking)) (name-servers '("10.0.2.3"))))) (syslog-service) (service guix-service-type |