diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-08 23:05:51 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-03-08 23:05:51 +0100 |
commit | 0c36a681c8fe7248924a15379ab3b1cc92ecdcd1 (patch) | |
tree | c4cdf61f9b99cd4b9dc75401952e63d8beec7d04 /gnu/system | |
parent | 61af1014c6703454c0dded6155637818e3322930 (diff) | |
download | guix-0c36a681c8fe7248924a15379ab3b1cc92ecdcd1.tar.gz |
doc: Add 'packages' field to OS configuration template.
* gnu/system/os-config.tmpl (packages): New field.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/os-config.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/system/os-config.tmpl b/gnu/system/os-config.tmpl index 07b099531e..e14c95733a 100644 --- a/gnu/system/os-config.tmpl +++ b/gnu/system/os-config.tmpl @@ -2,7 +2,7 @@ (use-modules (gnu)) (use-service-modules xorg networking dbus avahi) -(use-package-modules avahi) +(use-package-modules xorg avahi) (operating-system (host-name "antelope") @@ -35,6 +35,9 @@ "audio" "video")) (home-directory "/home/alice")))) + ;; Globally-installed packages. + (packages (cons xterm %base-packages)) + ;; Add services to the baseline: the SLiM log-in manager ;; for Xorg sessions, a DHCP client, Avahi, and D-Bus. (services (cons* (slim-service) |