summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system-configuration.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/system-configuration.scm b/system-configuration.scm
index 3d4fe40..cb7207f 100644
--- a/system-configuration.scm
+++ b/system-configuration.scm
@@ -139,12 +139,15 @@
(type "btrfs")
(dependencies mapped-devices)))
+(define file-system-boot
+ (file-system (mount-point "/boot")
+ (device (uuid "4f77b5fc-56ad-43ae-b6ec-e5adc8c48587"
+ 'ext4))
+ (type "ext4")))
+
(define file-systems
(cons* file-system-root
- (file-system (mount-point "/boot")
- (device (uuid "4f77b5fc-56ad-43ae-b6ec-e5adc8c48587"
- 'ext4))
- (type "ext4"))
+ file-system-boot
%base-file-systems))
(operating-system (locale locale)