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-23 01:02:08 +00:00
|
|
|
(inherit %desktop-freya-operating-system)
|
2024-10-22 02:51:40 +00:00
|
|
|
(host-name "shinji")
|
|
|
|
(mapped-devices (list (mapped-device
|
|
|
|
(source (uuid
|
2024-10-22 03:29:37 +00:00
|
|
|
"ad489bfa-4280-44ea-8ad2-60347b516d60"))
|
|
|
|
(target "root")
|
2024-10-22 02:51:40 +00:00
|
|
|
(type luks-device-mapping))))
|
2024-10-22 03:29:37 +00:00
|
|
|
(swap-devices (list (swap-space
|
|
|
|
(target (uuid
|
|
|
|
"57caa02d-8569-43e3-8bf9-09dd6f02b191")))))
|
2024-10-22 02:51:40 +00:00
|
|
|
(file-systems (cons* (file-system
|
|
|
|
(mount-point "/")
|
2024-10-22 03:29:37 +00:00
|
|
|
(device "/dev/mapper/root")
|
2024-10-22 02:51:40 +00:00
|
|
|
(type "btrfs")
|
|
|
|
(dependencies mapped-devices))
|
|
|
|
(file-system
|
|
|
|
(mount-point "/boot/efi")
|
2024-10-22 03:29:37 +00:00
|
|
|
(device (uuid "6F93-6A0B"
|
2024-10-22 02:51:40 +00:00
|
|
|
'fat32))
|
|
|
|
(type "vfat"))
|
2024-10-23 01:02:08 +00:00
|
|
|
(operating-system-file-systems
|
|
|
|
%desktop-freya-operating-system))))
|