23 lines
894 B
Scheme
23 lines
894 B
Scheme
(use-modules (freya system)
|
|
(gnu))
|
|
|
|
(operating-system
|
|
(inherit %virt-freya-operating-system)
|
|
(host-name "curiass")
|
|
(swap-devices (list (swap-space
|
|
(target (uuid
|
|
"8ffa6d73-06e9-4dc5-9b15-569b3b176dbc")))))
|
|
(file-systems (cons* (file-system
|
|
(mount-point "/")
|
|
(device (uuid "fae7deed-d630-40a1-adac-87f49b431ad4"))
|
|
(type "btrfs"))
|
|
(file-system
|
|
(mount-point "/boot")
|
|
(device (uuid "027A-4AA1"
|
|
'fat32))
|
|
(type "vfat"))
|
|
(operating-system-file-systems
|
|
%virt-freya-operating-system)))
|
|
(bootloader (bootloader-configuration
|
|
(bootloader grub-bootloader)
|
|
(targets '("/dev/sda")))))
|