(define-module (config systems frostburn) #:use-module (gnu) #:use-module (nongnu system linux-initrd) #:use-module (nongnu packages linux) #:use-module (config systems base)) (use-service-modules cups desktop networking) (operating-system (inherit system-base) (kernel linux) (initrd microcode-initrd) (firmware (list linux-firmware)) (timezone "Asia/Dubai") (host-name "frostburn") (users (cons* (user-account (name "coldsideofyourpillow") (comment "mibs") (group "users") (home-directory "/home/coldsideofyourpillow") (supplementary-groups (list "wheel" "netdev" "audio" "video"))) %base-user-accounts)) (services (append (list (service gnome-desktop-service-type) (service tor-service-type) (service cups-service-type)) %desktop-services)) (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (targets (list "/boot/efi")) (keyboard-layout keyboard-layout))) (swap-devices (list (swap-space (target (uuid "3a21bb56-3b9a-4219-a516-7c722444b374"))))) (mapped-devices (list (mapped-device (source (uuid "28d34538-565b-429a-9255-3f1e77a3db6a")) (target "crypthome") (type luks-device-mapping)) (mapped-device (source (uuid "f13f2c28-b17b-42e7-ba76-ef92fd88a761")) (target "cryptroot") (type luks-device-mapping)))) (file-systems (cons* (file-system (mount-point "/boot/efi") (device (uuid "7C29-FB81" 'fat32)) (type "vfat")) (file-system (mount-point "/") (device "/dev/mapper/cryptroot") (type "btrfs") (dependencies mapped-devices)) (file-system (mount-point "/home") (device "/dev/mapper/crypthome") (type "btrfs") (dependencies mapped-devices)) %base-file-systems)))