Skip to content

Instantly share code, notes, and snippets.

@AcouBass
Created December 29, 2016 23:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AcouBass/3a1a6ab28c17830a175dc7da95eb18cd to your computer and use it in GitHub Desktop.
Save AcouBass/3a1a6ab28c17830a175dc7da95eb18cd to your computer and use it in GitHub Desktop.
;; This is an operating system configuration template
;; for a "desktop" setup with GNOME and Xfce.
(use-modules (gnu) (gnu system nss) (gnu packages))
(use-service-modules desktop)
(use-package-modules mail gnuzilla gnustep certs)
(operating-system
(host-name "GuixLaptop")
(timezone "Europe/London")
(locale "en_GB.UTF-8")
;; Assuming /dev/sdX is the target hard disk, and "my-root"
;; is the label of the target root file system.
(bootloader (grub-configuration (device "/dev/sda")))
(mapped-devices (list (mapped-device
(source (uuid "b1046fef-1981-4d70-b3e4-6770c6a9c4fb"))
(target "cryptroot")
(type luks-device-mapping))))
(swap-devices '("/swapfile"))
(file-systems (cons* (file-system
(device "my-boot")
(title 'label)
(mount-point "/boot")
(type "ext4"))
(file-system
(device "/dev/mapper/cryptroot")
(title 'device)
(mount-point "/")
(type "ext4"))
%base-file-systems))
(users (cons (user-account
(name "eddie")
(comment "Admin guy")
(group "users")
(supplementary-groups '("wheel" "netdev"
"audio" "video"))
(home-directory "/home/eddie"))
%base-user-accounts))
;; This is where we specify system-wide packages.
(packages (cons* icecat claws-mail
windowmaker wmbattery wmnd wmcpuload wmclock wmfire
nss-certs
%base-packages))
;; Add GNOME and/or Xfce---we can choose at the log-in
;; screen with F1. Use the "desktop" services, which
;; include the X11 log-in service, networking with Wicd,
;; and more.
(services (cons* (xfce-desktop-service)
%desktop-services))
;; Allow resolution of '.local' host names with mDNS.
(name-service-switch %mdns-host-lookup-nss))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment