(use-modules (gnu) (gnu system) (gnu services) (gnu services desktop) (gnu services mail) (guix store) (gnu system nss)) (use-package-modules base admin xorg avahi xfce wicd linux-nonfree certs gnome linux polkit freedesktop) (operating-system (host-name "clucks") (timezone "Europe/Paris") (locale "en_US.UTF-8") (kernel linux-nonfree) (bootloader (grub-configuration (device "/dev/sda"))) (file-systems (cons* (file-system (device "root") (title 'label) (mount-point "/") (type "ext4")) %base-file-systems)) (users (list (user-account (name "wingo") (comment "") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/wingo")))) (name-service-switch %mdns-host-lookup-nss) (packages (cons* wicd nss-certs %base-packages)) (firmware (cons* iwlwifi-firmware-nonfree ibt-hw-firmware-nonfree %base-firmware)) (services (cons* (dovecot-service #:config (dovecot-configuration (mail-location "maildir:~/.mail") (listen '("127.0.0.1")))) (gnome-desktop-service) (xfce-desktop-service) %desktop-services)))