summaryrefslogtreecommitdiff
path: root/RyanThinkpad.scm
diff options
context:
space:
mode:
Diffstat (limited to 'RyanThinkpad.scm')
-rw-r--r--RyanThinkpad.scm11
1 files changed, 8 insertions, 3 deletions
diff --git a/RyanThinkpad.scm b/RyanThinkpad.scm
index 1066bac..5ca1cf6 100644
--- a/RyanThinkpad.scm
+++ b/RyanThinkpad.scm
@@ -1,4 +1,5 @@
1(use-modules (ryan-config base-system) 1(use-modules (ryan-config base-system)
2 (ryan-bootloader uki)
2 (gnu)) 3 (gnu))
3 4
4(operating-system 5(operating-system
@@ -10,7 +11,7 @@
10 (host-name "RyanThinkpad") 11 (host-name "RyanThinkpad")
11 (mapped-devices (list (mapped-device 12 (mapped-devices (list (mapped-device
12 (source (uuid 13 (source (uuid
13 "adcaf322-7ee5-48ec-abf6-4a9b10643878")) 14 "40a2c899-a54f-400b-b3b8-9f83b8378c61"))
14 (target "sysroot") 15 (target "sysroot")
15 (type luks-device-mapping)))) 16 (type luks-device-mapping))))
16 (file-systems (cons* (file-system 17 (file-systems (cons* (file-system
@@ -20,9 +21,13 @@
20 (dependencies mapped-devices)) 21 (dependencies mapped-devices))
21 (file-system 22 (file-system
22 (mount-point "/boot/efi") 23 (mount-point "/boot/efi")
23 (device (uuid "DFE8-32EF" 24 (device (uuid "A73D-7D13"
24 'fat32)) 25 'fat32))
25 (type "vfat")) %base-file-systems)) 26 (type "vfat")) %base-file-systems))
27 (bootloader (bootloader-configuration
28 (bootloader uefi-uki-bootloader)
29 (targets (list "/boot/efi"))
30 (keyboard-layout (keyboard-layout "us"))))
26 (swap-devices 31 (swap-devices
27 (list 32 (list
28 (swap-space (target (uuid "7e1bb7c5-da2a-4509-8263-f707fc752993")))))) 33 (swap-space (target (uuid "87b91351-93b6-4dcc-814f-64c0f901c4f3"))))))