summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <davet@gnu.org>2015-07-18 06:19:16 -0400
committerDavid Thompson <davet@gnu.org>2015-11-01 09:49:30 -0500
commitadbfec65b6de985f554b1914447707ea7f8f6894 (patch)
treec5a79882fcf6b3afb87cb1869fde3b87a249290d
parentbd2804f5387473e4655101a1cf5f3dff5bf1a818 (diff)
Update labrys config.
-rw-r--r--labrys.scm27
1 files changed, 17 insertions, 10 deletions
diff --git a/labrys.scm b/labrys.scm
index d577824..8b4f0b4 100644
--- a/labrys.scm
+++ b/labrys.scm
@@ -14,15 +14,22 @@
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
-(use-modules (gnu) (gnu system nss))
-(use-service-modules desktop)
-(use-package-modules xfce wicd avahi certs pulseaudio)
+(use-modules (gnu)
+ (gnu system nss)
+ (gnu system linux-initrd))
+(use-service-modules desktop ssh)
+(use-package-modules admin avahi certs gnome man less pulseaudio rsync ssh
+ zip wicd xfce xorg)
(operating-system
(host-name "labrys")
(timezone "America/New_York")
(locale "en_US.UTF-8")
(bootloader (grub-configuration (device "/dev/sdc")))
+ (initrd (lambda (file-systems . rest)
+ (apply base-initrd file-systems
+ #:extra-modules '("fuse")
+ rest)))
(file-systems (cons (file-system
(device "root")
(title 'label)
@@ -33,12 +40,12 @@
(name "dave")
(group "users")
(comment "David Thompson")
- (supplementary-groups
- '("wheel" "audio" "video" "netdev"))
+ (supplementary-groups '("wheel" "audio" "video" "netdev"))
(home-directory "/home/dave"))))
- (packages (cons* xfce
- pulseaudio
- wicd
- nss-certs
+ (packages (cons* avahi gnome-terminal htop less man-db nss-certs
+ openssh pulseaudio wicd xfce unzip rsync
%base-packages))
- (services %desktop-services))
+ (services (cons (lsh-service #:initialize? #t)
+ %desktop-services))
+ (name-service-switch %mdns-host-lookup-nss)
+ (hosts-file (local-file "hosts")))