blob: d277afecd0e4d9e9e0be1105ce248ce1f43c3c37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
(use-modules (ryan-config base-system)
(ryan-bootloader uki)
(gnu))
(operating-system
(inherit base-operating-system)
(host-name "SmallLaptop")
(mapped-devices (list (mapped-device
(source (uuid
"b22d6f2b-44ce-4b56-9833-dde593d19d75"))
(target "sysroot")
(type luks-device-mapping))))
(file-systems (cons* (file-system
(mount-point "/")
(device "/dev/mapper/sysroot")
(type "ext4")
(dependencies mapped-devices))
(file-system
(mount-point "/boot/efi")
(device (uuid "B70B-1F33"
'fat32))
(type "vfat")) %base-file-systems))
(bootloader (bootloader-configuration
(bootloader uefi-uki-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout (keyboard-layout "us"))))
(swap-devices
(list
(swap-space (target (uuid "3d4b8192-e86f-4579-9285-29f7cd11d136"))))))
|