help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Install image with custom services


From: Jack Hill
Subject: Re: Install image with custom services
Date: Mon, 23 Dec 2019 11:14:19 -0500 (EST)
User-agent: Alpine 2.20 (DEB 67 2015-01-07)

On Thu, 19 Dec 2019, Jack Hill wrote:

I created a more minimal operating system definition:

```scheme
(define my-installation-os
 (operating-system
   (inherit installation-os)
   (packages (cons package:network-manager
                     (operating-system-packages installation-os)))
   (services (operating-system-services installation-os))))
```

To my surprise, this also fails with

```
guix system: error: more than one target service of type 'account'
```

However, replacing

(operating-system-services installation-os)

with

(@@ (gnu system install) %installation-services)

works.

What am I not understanding about how the former works?

Best,
Jack



reply via email to

[Prev in Thread] Current Thread [Next in Thread]