diff options
Diffstat (limited to 'thinkpad.scm')
| -rw-r--r-- | thinkpad.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/thinkpad.scm b/thinkpad.scm new file mode 100644 index 0000000..a15bc66 --- /dev/null +++ b/thinkpad.scm | |||
| @@ -0,0 +1,23 @@ | |||
| 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")))))) | ||
