summaryrefslogtreecommitdiff
path: root/deployment
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2026-06-07 12:13:28 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2026-06-07 12:35:23 +0200
commit6141555a7a5cecb06175e02e73a44c41dac20155 (patch)
treea48888073ca888cdabcdbf95a9b4ef54ed882c39 /deployment
parente858b3ce7b3549ea95f09c36cff109d7ad4e7c40 (diff)
(system akashi): define file-system-boot
Diffstat (limited to 'deployment')
-rw-r--r--deployment/system/akashi.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/deployment/system/akashi.scm b/deployment/system/akashi.scm
index 5e62fa4..4c2fe77 100644
--- a/deployment/system/akashi.scm
+++ b/deployment/system/akashi.scm
@@ -22,6 +22,7 @@
#:export (host-name)
#:use-module (guix gexp)
#:use-module (sovereign bootloader)
+ #:use-module (sovereign system file-systems)
#:use-module (users id1000)
#:use-module ((deployment gexp)
#:prefix deployment:gexp:)
@@ -58,6 +59,11 @@
(define host-name "akashi")
+(define file-system-boot
+ (gnu:system:file-systems:file-system
+ (inherit file-system/efi)
+ (device (file-system-label* "BOOT"))))
+
(define root-partition
((@ (gnu system file-systems) file-system)
(mount-point "/")
@@ -115,6 +121,7 @@
(hosts-file #f)
(mapped-devices (list))
(file-systems (cons* root-partition
+ file-system-boot
gnu:system:file-systems:%base-file-systems))
(swap-devices (list))
(users (list uid1000-account))