From 342f5aa6395f28c1cbe6b6587ebcecc1b4703121 Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Tue, 13 May 2025 14:03:06 -0400 Subject: SmallLaptop config added, home-config changed before adding SOPs, README updated --- SmallLaptop.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 SmallLaptop.scm (limited to 'SmallLaptop.scm') diff --git a/SmallLaptop.scm b/SmallLaptop.scm new file mode 100644 index 0000000..d277afe --- /dev/null +++ b/SmallLaptop.scm @@ -0,0 +1,29 @@ +(use-modules (ryan-config base-system) + (ryan-bootloader uki) + (gnu)) + +(operating-system + (inherit base-operating-system) + (host-name "SmallLaptop") + (mapped-devices (list (mapped-device + (source (uuid + "b22d6f2b-44ce-4b56-9833-dde593d19d75")) + (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 "B70B-1F33" + 'fat32)) + (type "vfat")) %base-file-systems)) + (bootloader (bootloader-configuration + (bootloader uefi-uki-bootloader) + (targets (list "/boot/efi")) + (keyboard-layout (keyboard-layout "us")))) + (swap-devices + (list + (swap-space (target (uuid "3d4b8192-e86f-4579-9285-29f7cd11d136")))))) -- cgit v1.2.3