bug#32296:

2018-08-02 Thread Andreas Enge
Hello, it looks as if the provided answers solve the problem, so I am closing this bug. It does not appear to be related to a bug in Guix in the end, so if you still have problems getting things to work, I would suggest sending a mail to help-g...@gnu.org . Thanks, Andreas

bug#32296:

2018-08-02 Thread Martin Castillo
Am 2. August 2018 09:05:51 MESZ schrieb "Gnu Röoty" : >I did that and I have this error, > >(use-modules (gnu) (gnu system nss)) >(use-service-modules desktop networking dbus cups) >(use-package-modules certs mate wicd glib cups) > >(services (cons* (service-cups-service-type >(cups-configuration

bug#32296:

2018-08-02 Thread Oleg Pykhalov
Hello, No, you had (services …) inside (operating-system …). E.g. a line 47 in https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/system/examples/bare-bones.tmpl?h=master#n47 Gnu Röoty writes: […] Should be like this: --8<---cut here---start->8---

bug#32296:

2018-08-02 Thread Gnu Röoty
I did that and I have this error, (use-modules (gnu) (gnu system nss)) (use-service-modules desktop networking dbus cups) (use-package-modules certs mate wicd glib cups) (services (cons* (service-cups-service-type (cups-configuration (web-interface? #t) (extensions (list cups-filters

bug#32296: cups not started

2018-08-01 Thread Oleg Pykhalov
Gnu Röoty writes: […] > Here my config.scm : […] > (service cups-service-type > (cups-configuration > (web-interface? #t) > (extensions > (list cups-filters hplip This ‘(service cups-service-type …)’ should be inside the ‘(services (cons* HERE))’. > (operating-system > … > (services

bug#32296: cups not started

2018-08-01 Thread Gnu Röoty
Yeah I have herd status but I dont find the service cups. I did guix pull before sudo -E guix system reconfigure /etc/config.scm The command guix --version tell that, guix (GNU Guix) 2207053542f293980266ab77c920fcd8de2f961b Here my config.scm : (use-modules (gnu) (gnu system nss))

bug#32296: cups not started

2018-08-01 Thread Oleg Pykhalov
Hello, Gnu Röoty writes: > Hi I have a problem with the CUPS service. What is the problem? Does ‘sudo herd status cups’ tells the service is not started? What about listening ports and running process? Does ‘netstat’ response is differ for you? --8<---cut