(use-modules (gnu)) (use-service-modules desktop networking ssh xorg) (use-package-modules xfce gtk gnome gnome-xyz fonts lxde video) (operating-system (locale "en_GB.utf8") (timezone "Europe/Helsinki") (keyboard-layout (keyboard-layout "fi")) (host-name "rm-lite") (users (cons* (user-account (name "retropikzel") (comment "Retropikzel") (group "users") (home-directory "/home/retropikzel") (supplementary-groups '("wheel" "netdev" "audio" "video"))) %base-user-accounts)) (packages (append (list (specification->package "openbox") (specification->package "gtk-engines") (specification->package "gvfs") (specification->package "ffmpeg") (specification->package "font-liberation") (specification->package "adwaita-icon-theme") (specification->package "lxappearance") (specification->package "papirus-icon-theme") (specification->package "xfce4-power-manager") (specification->package "nss-certs")) %base-packages)) (services (append (list ;(service gnome-desktop-service-type) ;(service xfce-desktop-service-type) (set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout)))) %desktop-services)) (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (target "/boot/efi") (keyboard-layout keyboard-layout))) (mapped-devices (list (mapped-device (source (uuid "8bf159e2-81cf-4fc9-988e-36c310cdf6ea")) (target "cryptroot") (type luks-device-mapping)))) (file-systems (cons* (file-system (mount-point "/boot/efi") (device (uuid "04F9-F119" 'fat32)) (type "vfat")) (file-system (mount-point "/") (device "/dev/mapper/cryptroot") (type "ext4") (dependencies mapped-devices)) %base-file-systems)))