diff options
Diffstat (limited to 'systems')
-rw-r--r-- | systems/akashi.scm | 13 |
1 files changed, 9 insertions, 4 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) |