mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
hydra: Fix the demo OS.
* build-aux/hydra/demo-os.scm: Don't try to import (gnu services dbus), which no longer exists. Use 'use-service-modules' and 'use-package-modules'. Use "en_US.UTF-8" as system locale.
This commit is contained in:
parent
040ca34f7e
commit
c362a40a58
1 changed files with 4 additions and 12 deletions
|
@ -22,22 +22,14 @@
|
|||
;;; machine images that we build.
|
||||
;;;
|
||||
|
||||
(use-modules (gnu)
|
||||
|
||||
(gnu packages xorg)
|
||||
(gnu packages avahi)
|
||||
(gnu packages linux)
|
||||
(gnu packages tor)
|
||||
|
||||
(gnu services networking)
|
||||
(gnu services avahi)
|
||||
(gnu services dbus)
|
||||
(gnu services xorg))
|
||||
(use-modules (gnu))
|
||||
(use-service-modules desktop xorg networking avahi)
|
||||
(use-package-modules linux xorg tor avahi)
|
||||
|
||||
(operating-system
|
||||
(host-name "gnu")
|
||||
(timezone "Europe/Paris")
|
||||
(locale "en_US.utf8")
|
||||
(locale "en_US.UTF-8")
|
||||
|
||||
(bootloader (grub-configuration
|
||||
(device "/dev/sda")))
|
||||
|
|
Loading…
Reference in a new issue