RyanLaptop.scm

bdb08351ce1afc15264658bcbb6ec03144874759 · 975 B · 24 lines raw

1 (use-modules (ryan-config base-system)
2 (gnu))
3
4 (operating-system
5 (inherit base-operating-system)
6 (host-name "RyanLaptop")
7 (mapped-devices (list (mapped-device
8 (source (uuid
9 "4de50ae4-e6f5-4f0c-ba4b-dd97b44a2ef2"))
10 (target "sysroot")
11 (type luks-device-mapping))))
12 (file-systems (cons* (file-system
13 (mount-point "/")
14 (device "/dev/mapper/sysroot")
15 (type "ext4")
16 (dependencies mapped-devices))
17 (file-system
18 (mount-point "/boot/efi")
19 (device (uuid "4C53-D400"
20 'fat32))
21 (type "vfat")) %base-file-systems))
22 (swap-devices
23 (list
24 (swap-space (target (uuid "6758bed3-9ff2-49a0-9cc3-7c48eaee6c4a"))))))