(use-modules (gnu) (rnrs lists)) (use-service-modules desktop networking ssh xorg) (operating-system (locale "en_US.utf8") (timezone "America/Anchorage") (keyboard-layout (keyboard-layout "us" #:options '("ctrl:swapcaps"))) (host-name "mithril") (users (cons* (user-account (name "christopher") (comment "Christopher Howard") (group "users") (home-directory "/home/christopher") (supplementary-groups '("wheel" "netdev" "audio" "video" "dialout" "disk" "floppy" "cdrom" "kvm"))) %base-user-accounts)) (packages (append (list (specification->package+output "bind" "utils")) (map specification->package '("cmst" "cpupower" "file" "gforth" "hexedit" "iperf" "lsof" "lxqt-connman-applet" "minicom" "neofetch" "nss-certs" "openssl" "picocom" "p7zip" "rsync" "screen" "sshfs" "tree" "wget" "zip")) %base-packages)) (services (append (list (service lxqt-desktop-service-type) (service slim-service-type (slim-configuration (xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout))))) (service elogind-service-type) (service openssh-service-type) (service connman-service-type) (service wpa-supplicant-service-type)) %base-services)) (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda") (keyboard-layout keyboard-layout))) (kernel-arguments (cons "cpufreq.default_governor=conservative" %default-kernel-arguments)) (file-systems (cons* (file-system (mount-point "/") (device (uuid "981f1ff0-cb4f-446d-81ed-be6bf64a139e" 'ext4)) (type "ext4")) %base-file-systems)))