(use-modules (gnu) (gnu services networking)) (operating-system (bootloader (bootloader-configuration (bootloader grub-bootloader))) (host-name "minimal-os") (file-systems (cons* (file-system (type "ext4") (mount-point "/") (device "/dev/sda1") (needed-for-boot? #t) (create-mount-point? #t)) %base-file-systems)) (packages (cons* %base-packages)) (services (cons* (service network-manager-service-type) (service wpa-supplicant-service-type) %base-services)) (timezone "America/Denver"))