new ssd drive switching to UEFI+GPT boot

This commit is contained in:
bartronx7 2025-12-06 20:22:47 -06:00
parent bbfd1b8e68
commit 1822ca6d8a

View file

@ -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")