From 230e166a827f30a9bb8b6c3ff1f03b830fbe5faf Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Sat, 25 May 2024 17:50:27 +0200 Subject: abstract away complexity in ayase root-partition --- systems/ayase/system-configuration.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'systems/ayase') diff --git a/systems/ayase/system-configuration.scm b/systems/ayase/system-configuration.scm index e289d00..01d7711 100644 --- a/systems/ayase/system-configuration.scm +++ b/systems/ayase/system-configuration.scm @@ -6,11 +6,12 @@ #:use-module (gnu services xorg) #:use-module (services distribution)) -;; DATA - (define bootloader-targets (list "/boot/efi")) +(define root-filesystem-device + (uuid "615a98cd-a632-4ee5-a6f4-e5ebcaa6fb8c")) + (define package-specifications (list "emacs" "emacs-exwm" @@ -35,7 +36,7 @@ (define root-partition (file-system (mount-point "/") - (device (uuid "615a98cd-a632-4ee5-a6f4-e5ebcaa6fb8c" 'ext4)) + (device root-filesystem-device) (type "ext4"))) (define swap-space-target -- cgit v1.2.3