diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-05-25 17:50:27 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-05-25 17:50:27 +0200 |
commit | 230e166a827f30a9bb8b6c3ff1f03b830fbe5faf (patch) | |
tree | 16eabcf84c0ae31415c86b0c9c3371f6488f90ef /systems | |
parent | da94c23daad4bf221d72c019a1b7eb8e168e9f7d (diff) |
abstract away complexity in ayase root-partition
Diffstat (limited to 'systems')
-rw-r--r-- | systems/ayase/system-configuration.scm | 7 |
1 files changed, 4 insertions, 3 deletions
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 |