unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* GuixSD minimal/customized install
@ 2015-12-17 20:57 Daniel Pimentel
  2015-12-20 23:08 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Pimentel @ 2015-12-17 20:57 UTC (permalink / raw)
  To: guix-devel

Hi Guixs,

I'd like a GuixSD "minimal" install and customized as:
1. Xorg minimal (there isn't xorg-minimal for example on repository);
2. Only my video drive (xf86-video-intel for example);
3. Remove other virtual-console (tty3, tty4, tty5 and tty6, because I 
only use tty1/tty2 and tty7 (X11));
4. Not install ratpoison or windowmaker (I remove it in my config.scm 
file but the system allway install it. In the momment I used 
Enlightenment and future Gnome-shell in soon when released it).

Help me, please :)

-- 
Daniel Pimentel (d4n1 3:)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: GuixSD minimal/customized install
  2015-12-17 20:57 GuixSD minimal/customized install Daniel Pimentel
@ 2015-12-20 23:08 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2015-12-20 23:08 UTC (permalink / raw)
  To: Daniel Pimentel; +Cc: guix-devel

Daniel Pimentel <d4n1@openmailbox.org> skribis:

> I'd like a GuixSD "minimal" install and customized as:
> 1. Xorg minimal (there isn't xorg-minimal for example on repository);

I think our ‘xorg-server’ is as minimal as can be.  What do you have in
mind?

> 2. Only my video drive (xf86-video-intel for example);

Yes, that’s a problem: currently (gnu system xorg) has a list of
hardcoded video drivers, which is obviously not optimal.

I think someone (宋文武, was it you?) was looking into making it more
flexible, but I’m not sure what happened.

> 3. Remove other virtual-console (tty3, tty4, tty5 and tty6, because I
> only use tty1/tty2 and tty7 (X11));

This should be relatively easy.  Either do not use %base-services at all
and explicitly list which services you want, taking %base-services in
(gnu services base) as an example.

Or you could construct your service list by removing things from
%base-services (untested):

  (fold (lambda (service result)
          (if (and (eq? (service-kind service) mingetty-service-type)
                   (string>? (mingetty-configuration-tty
                               (service-parameters service))
                             "tty2"))
              result
              (cons service result)))
        '()
        %base-services)

> 4. Not install ratpoison or windowmaker (I remove it in my config.scm
> file but the system allway install it. In the momment I used
> Enlightenment and future Gnome-shell in soon when released it).

I don’t think Ratpoison is automatically installed.  However WindowMaker
is, because of the #:fallback-session in ‘xinitrc’, in (gnu system
xorg); 宋文武, i think we could remove it now, no?

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-12-20 23:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-17 20:57 GuixSD minimal/customized install Daniel Pimentel
2015-12-20 23:08 ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).