⎗ ✓ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30(operating-system (host-name "guix") (keyboard-layout (keyboard-layout "us")) (initrd (lambda* (file-systems #:key #:allow-other-keys) (local-file "initrd.gz"))) (packages [...]) (services (list %activation-service %boot-service)) (essential-services (list (service system-service-type (list)) (service linux-builder-service-type (linux-builder-configuration (kernel (operating-system-kernel this-operating-system)) (modules (operating-system-kernel-loadable-modules this-operating-system)))) (service profile-service-type (operating-system-packages this-operating-system)))) (pam-services (list)) (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (targets '("/boot/efi")) (keyboard-layout keyboard-layout))) (file-systems (list (file-system (mount-point "/") (device "/dev/nvme0n1p1") (type "ext4")))))