From adbfec65b6de985f554b1914447707ea7f8f6894 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 18 Jul 2015 06:19:16 -0400 Subject: Update labrys config. --- labrys.scm | 27 +++++++++++++++++---------- 1 file 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 ;;; . -(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"))) -- cgit v1.2.3