diff options
author | Ryan Schanzenbacher <ryan@rschanz.org> | 2023-09-03 22:54:31 -0400 |
---|---|---|
committer | Ryan Schanzenbacher <ryan@rschanz.org> | 2023-09-03 22:54:31 -0400 |
commit | 600c4b820040a8d26e2e3a13ff341810a0ba1293 (patch) | |
tree | fcfd002be7505c7698f3e19311dbd7ee467ba26c /RyanThinkpad.scm | |
parent | af94b1b40df3144c7e4a7ae77425b6aecb17845c (diff) |
added aliases and renamed files to match hostname
Diffstat (limited to 'RyanThinkpad.scm')
-rw-r--r-- | RyanThinkpad.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/RyanThinkpad.scm b/RyanThinkpad.scm new file mode 100644 index 0000000..bfacd6b --- /dev/null +++ b/RyanThinkpad.scm | |||
@@ -0,0 +1,24 @@ | |||
1 | (use-modules (ryan-config base-system) | ||
2 | (gnu)) | ||
3 | |||
4 | (operating-system | ||
5 | (inherit base-operating-system) | ||
6 | (host-name "RyanThinkpad") | ||
7 | (mapped-devices (list (mapped-device | ||
8 | (source (uuid | ||
9 | "adcaf322-7ee5-48ec-abf6-4a9b10643878")) | ||
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 "DFE8-32EF" | ||
20 | 'fat32)) | ||
21 | (type "vfat")) %base-file-systems)) | ||
22 | (swap-devices | ||
23 | (list | ||
24 | (swap-space (target (uuid "7e1bb7c5-da2a-4509-8263-f707fc752993")))))) | ||