2024-06-22 02:52:21 +00:00
|
|
|
(use-modules (freya system)
|
2023-10-02 16:29:28 +00:00
|
|
|
(gnu))
|
2023-09-05 03:21:01 +00:00
|
|
|
|
|
|
|
(operating-system
|
2024-10-22 02:51:40 +00:00
|
|
|
(inherit base-operating-system)
|
|
|
|
(host-name "shinji")
|
2023-09-05 03:21:01 +00:00
|
|
|
|
2024-10-22 02:51:40 +00:00
|
|
|
(mapped-devices (list (mapped-device
|
|
|
|
(source (uuid
|
|
|
|
"5c5dcb22-62b1-41af-9116-b8fdfba83ca2"))
|
|
|
|
(target "cryptroot")
|
|
|
|
(type luks-device-mapping))))
|
2023-09-29 14:36:21 +00:00
|
|
|
|
2024-10-22 02:51:40 +00:00
|
|
|
(file-systems (cons* (file-system
|
|
|
|
(mount-point "/")
|
|
|
|
(device "/dev/mapper/cryptroot")
|
|
|
|
(type "btrfs")
|
|
|
|
(dependencies mapped-devices))
|
|
|
|
(file-system
|
|
|
|
(mount-point "/boot/efi")
|
|
|
|
(device (uuid "AD5A-4DF3"
|
|
|
|
'fat32))
|
|
|
|
(type "vfat"))
|
|
|
|
%freya-file-systems)))
|