(use-modules (ryan-config base-system) (ryan-bootloader uki) (gnu)) (operating-system (inherit base-operating-system) (host-name "SmallLaptop") (mapped-devices (list (mapped-device (source (uuid "b22d6f2b-44ce-4b56-9833-dde593d19d75")) (target "sysroot") (type luks-device-mapping)))) (file-systems (cons* (file-system (mount-point "/") (device "/dev/mapper/sysroot") (type "ext4") (dependencies mapped-devices)) (file-system (mount-point "/boot/efi") (device (uuid "B70B-1F33" 'fat32)) (type "vfat")) %base-file-systems)) (bootloader (bootloader-configuration (bootloader uefi-uki-bootloader) (targets (list "/boot/efi")) (keyboard-layout (keyboard-layout "us")))) (swap-devices (list (swap-space (target (uuid "3d4b8192-e86f-4579-9285-29f7cd11d136"))))))