From 8e63730e60f19e7574999384df2f788eccac4890 Mon Sep 17 00:00:00 2001 From: mir Date: Wed, 9 Oct 2024 18:59:40 -0800 Subject: [PATCH] add initrd and update placeything hashes --- system.scm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/system.scm b/system.scm index 017ded7..044a235 100644 --- a/system.scm +++ b/system.scm @@ -11,7 +11,8 @@ ;; used in this configuration. (use-modules (gnu) - (nongnu packages linux)) + (nongnu packages linux) + (nongnu system linux-initrd)) (use-service-modules cups desktop @@ -21,6 +22,7 @@ (operating-system (kernel linux) + (initrd microcode-initrd) (firmware (list linux-firmware)) (locale "en_US.utf8") (timezone "America/Anchorage") @@ -76,12 +78,14 @@ ;; by running 'blkid' in a terminal. (file-systems (cons* (file-system (mount-point "/boot/efi") - (device (uuid "67E3-17ED" + (device (uuid ;"67E3-17ED" + "FBB5-2030" 'fat32)) (type "vfat")) (file-system (mount-point "/") (device (uuid - "39ec24ba-7c1f-49ff-9af6-57ace91cfba5" + ;"39ec24ba-7c1f-49ff-9af6-57ace91cfba5" + "25b6c953-f92e-47df-baf0-6a80bccba45f" 'ext4)) (type "ext4")) %base-file-systems)))