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 --- RyanLaptop.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 RyanLaptop.scm (limited to 'RyanLaptop.scm') diff --git a/RyanLaptop.scm b/RyanLaptop.scm new file mode 100644 index 0000000..11650bc --- /dev/null +++ b/RyanLaptop.scm @@ -0,0 +1,24 @@ +(use-modules (ryan-config base-system) + (gnu)) + +(operating-system + (inherit base-operating-system) + (host-name "RyanLaptop") + (mapped-devices (list (mapped-device + (source (uuid + "4de50ae4-e6f5-4f0c-ba4b-dd97b44a2ef2")) + (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 "4C53-D400" + 'fat32)) + (type "vfat")) %base-file-systems)) + (swap-devices + (list + (swap-space (target (uuid "6758bed3-9ff2-49a0-9cc3-7c48eaee6c4a")))))) -- cgit v1.2.3