thinkpad.scm

c04cedc5cfca19aaae34a04a80206bc7d183c9e5 · 958 B · 23 lines raw

1 (use-modules (ryan-config base-system))
2
3 (operating-system
4 (inherit base-operating-system)
5 (host-name "RyanThinkpad")
6 (mapped-devices (list (mapped-device
7 (source (uuid
8 "adcaf322-7ee5-48ec-abf6-4a9b10643878"))
9 (target "sysroot")
10 (type luks-device-mapping))))
11 (file-systems (cons* (file-system
12 (mount-point "/")
13 (device "/dev/mapper/sysroot")
14 (type "ext4")
15 (dependencies mapped-devices))
16 (file-system
17 (mount-point "/boot/efi")
18 (device (uuid "DFE8-32EF"
19 'fat32))
20 (type "vfat")) %base-file-systems))
21 (swap-devices
22 (list
23 (swap-space (target (uuid "7e1bb7c5-da2a-4509-8263-f707fc752993"))))))