summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-05-25 17:41:13 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-05-25 17:41:13 +0200
commitda94c23daad4bf221d72c019a1b7eb8e168e9f7d (patch)
tree61ec0a66adf02c9cb2359a0bf26a5f5b5cce1909
parent8cf16a7346af6fc27efdc2a0835b9ea8da769e4e (diff)
drop data separation in ayase root-partition and fix swap uuid
-rw-r--r--systems/ayase/system-configuration.scm17
1 files changed, 4 insertions, 13 deletions
diff --git a/systems/ayase/system-configuration.scm b/systems/ayase/system-configuration.scm
index 6cd0082..e289d00 100644
--- a/systems/ayase/system-configuration.scm
+++ b/systems/ayase/system-configuration.scm
@@ -16,15 +16,6 @@
"emacs-exwm"
"emacs-desktop-environment"))
-(define root-mount-point
- "/")
-
-(define root-filesystem
- "ext4")
-
-(define root-uuid
- "615a98cd-a632-4ee5-a6f4-e5ebcaa6fb8c")
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define efi-partition
@@ -43,12 +34,12 @@
"video"))))
(define root-partition
- (file-system (mount-point root-mount-point)
- (device (uuid root-uuid 'ext4))
- (type root-filesystem)))
+ (file-system (mount-point "/")
+ (device (uuid "615a98cd-a632-4ee5-a6f4-e5ebcaa6fb8c" 'ext4))
+ (type "ext4")))
(define swap-space-target
- (uuid "cc6bbf7c-e42a-4ac3-a9ae-3b14d3b4b841"))
+ (uuid "f1c1b2ab-5c11-4708-80c2-d5ac99ff35cf"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;