26 lines
1.1 KiB
Scheme
26 lines
1.1 KiB
Scheme
(use-modules (freya system)
|
|
(gnu))
|
|
|
|
(operating-system
|
|
(inherit %desktop-freya-operating-system)
|
|
(host-name "shinji")
|
|
(mapped-devices (list (mapped-device
|
|
(source (uuid
|
|
"ad489bfa-4280-44ea-8ad2-60347b516d60"))
|
|
(target "root")
|
|
(type luks-device-mapping))))
|
|
(swap-devices (list (swap-space
|
|
(target (uuid
|
|
"57caa02d-8569-43e3-8bf9-09dd6f02b191")))))
|
|
(file-systems (cons* (file-system
|
|
(mount-point "/")
|
|
(device "/dev/mapper/root")
|
|
(type "btrfs")
|
|
(dependencies mapped-devices))
|
|
(file-system
|
|
(mount-point "/boot/efi")
|
|
(device (uuid "6F93-6A0B"
|
|
'fat32))
|
|
(type "vfat"))
|
|
(operating-system-file-systems
|
|
%desktop-freya-operating-system))))
|