summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--systems/akashi.scm13
-rw-r--r--users/id1000.scm2
2 files changed, 10 insertions, 5 deletions
diff --git a/systems/akashi.scm b/systems/akashi.scm
index efc2893..ae4f96a 100644
--- a/systems/akashi.scm
+++ b/systems/akashi.scm
@@ -1,15 +1,20 @@
(define-module (systems akashi))
+(define root-partition
+ ((@ (gnu system file-systems) file-system)
+ (mount-point "/")
+ (device ((@ (gnu system file-systems) file-system-label) "akashi-root"))
+ (type "ext4")))
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
(define host-name*
"akashi")
(define (file-systems)
(use-modules (suweren system))
(append %suweren-file-systems
- (list ((@ (gnu system file-systems) file-system)
- (type "ext4")
- (mount-point "/")
- (device (file-system-label "akashi-root"))))))
+ (list root-partition)))
(define keyboard-layout*
((@ (gnu system keyboard) keyboard-layout)
diff --git a/users/id1000.scm b/users/id1000.scm
index 75fdd2a..0ccda8d 100644
--- a/users/id1000.scm
+++ b/users/id1000.scm
@@ -495,7 +495,7 @@
(define groups
(list "audio"
- "libvirt"
+ ;; "libvirt"
"netdev"
"video"
"wheel"))