;; This is an operating system configuration generated ;; by the graphical installer. (use-modules (gnu)) (use-service-modules desktop networking ssh xorg) (operating-system (locale "de_DE.utf8") (timezone "Europe/Berlin") (keyboard-layout (keyboard-layout "de" "neo")) (host-name "geex") (users (cons* (user-account (name "mcd") (comment "Martin") (group "users") (home-directory "/home/mcd") (supplementary-groups '("wheel" "netdev" "audio" "video"))) %base-user-accounts)) (packages (append (list (specification->package "nss-certs")) %base-packages)) (services (append (list (service xfce-desktop-service-type) (service openssh-service-type) (set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout)))) %desktop-services)) (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (target "/efi") ; deprecated (keyboard-layout keyboard-layout))) (mapped-devices (list (mapped-device (source (uuid "e35658c9-6e31-431a-9397-2e988e32fe63")) (target "lukspart") (type luks-device-mapping)) (mapped-device (source "lvmSystem") (target "lvmSystem-volRoot") (type lvm-device-mapping)))) (file-systems (cons* (file-system (mount-point "/efi") (device (uuid "845E-533F" 'fat32)) (type "vfat")) (file-system (mount-point "/") (device ; mapped device name: lvmSystem-volRoot, FS-label is guixsd-root (uuid "0584a348-341b-475d-b19f-93b5567ee02b" 'ext4)) (type "ext4") (dependencies mapped-devices)) %base-file-systems)) (swap-devices (list (swap-space (target "/swapfile") (dependencies (filter (file-system-mount-point-predicate "/") file-systems))))) (kernel-arguments (cons* "resume=/swapfile" "resume_offset=34816" ;; got with: # filefrag -e /swapfile %default-kernel-arguments)))