From 3763b1102dd6209ec566ac16892844644b26e100 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Mon, 31 Oct 2022 23:58:51 +0100 Subject: System configuration: break out file-system-boot --- system-configuration.scm | 11 +++++++---- 1 file 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) -- cgit v1.2.3