dotfiles-guix/systems/kaworu.scm

24 lines
890 B
Scheme
Raw Normal View History

2024-06-22 02:52:21 +00:00
(use-modules (freya system)
(gnu))
(operating-system
2024-10-23 01:02:08 +00:00
(inherit %desktop-freya-operating-system)
(host-name "kaworu")
(mapped-devices (list (mapped-device
2024-10-22 02:51:40 +00:00
(source (uuid
"89257280-202b-4565-b832-89f160d5e4e2"))
(target "cryptroot")
(type luks-device-mapping))))
(file-systems (cons* (file-system
2024-10-22 02:51:40 +00:00
(mount-point "/")
(device "/dev/mapper/cryptroot")
(type "btrfs")
(dependencies mapped-devices))
(file-system
(mount-point "/boot/efi")
(device (uuid "099A-D668"
'fat32))
2024-10-22 02:51:40 +00:00
(type "vfat"))
2024-10-23 01:02:08 +00:00
(operating-system-file-systems
%desktop-freya-operating-system))))