From 600c4b820040a8d26e2e3a13ff341810a0ba1293 Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Sun, 3 Sep 2023 22:54:31 -0400 Subject: added aliases and renamed files to match hostname --- RyanThinkpad.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 RyanThinkpad.scm (limited to 'RyanThinkpad.scm') diff --git a/RyanThinkpad.scm b/RyanThinkpad.scm new file mode 100644 index 0000000..bfacd6b --- /dev/null +++ b/RyanThinkpad.scm @@ -0,0 +1,24 @@ +(use-modules (ryan-config base-system) + (gnu)) + +(operating-system + (inherit base-operating-system) + (host-name "RyanThinkpad") + (mapped-devices (list (mapped-device + (source (uuid + "adcaf322-7ee5-48ec-abf6-4a9b10643878")) + (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 "DFE8-32EF" + 'fat32)) + (type "vfat")) %base-file-systems)) + (swap-devices + (list + (swap-space (target (uuid "7e1bb7c5-da2a-4509-8263-f707fc752993")))))) -- cgit v1.2.3