From 1822ca6d8a3f4fbef02b9459128b7ced003eef18 Mon Sep 17 00:00:00 2001 From: bartronx7 Date: Sat, 6 Dec 2025 20:22:47 -0600 Subject: [PATCH] new ssd drive switching to UEFI+GPT boot --- excellon/config.scm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/excellon/config.scm b/excellon/config.scm index 3a1aa83..d758723 100644 --- a/excellon/config.scm +++ b/excellon/config.scm @@ -40,7 +40,7 @@ (service oci-container-service-type (list (oci-container-configuration - (image "localhost:5000/caddy:latest") + (image "ghcr.io/caddybuilds/caddy-namecheap:latest") (provision "caddy") (respawn? #t) (network "sandbox") @@ -288,8 +288,8 @@ ))) %base-services)) (bootloader (bootloader-configuration - (bootloader grub-bootloader) - (targets (list "/dev/sda")) + (bootloader grub-efi-bootloader) + (targets (list "/boot/efi")) (keyboard-layout keyboard-layout))) ;; The devices that make up the luks "docs" labelled filesystem @@ -309,8 +309,13 @@ (file-systems (cons* (file-system (mount-point "/") - (device (file-system-label "guixos")) - (type "btrfs")) + (device (file-system-label "root")) + (type "ext4")) + + (file-system + (mount-point "/boot/efi") + (device (uuid "63B5-42FC" 'fat32)) + (type "vfat")) (file-system (mount-point "/data")