diff options
author | ryan77627 <ryan@rschanz.org> | 2023-05-19 00:29:52 -0400 |
---|---|---|
committer | Ryan Schanzenbacher <ryan@rschanz.org> | 2023-05-19 00:29:52 -0400 |
commit | c605bf8e4b9c5a368494a970efaa26d20be1834e (patch) | |
tree | bfa6b6d5a95e0a82de3740e40c7c197f2a5061f9 /thinkpad.scm | |
parent | f48af547d767f6718249dc05d7464a123dbebcb1 (diff) |
convert to thinkpad specific config
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")))))) | ||