summaryrefslogtreecommitdiff
path: root/deployment/system
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/system')
-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))