diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-02 10:49:31 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-02 10:49:31 +0200 |
commit | 183f78e4dcfdd184cee01b55faf8a4a7f988be34 (patch) | |
tree | f1afc219a99332b4abd5e0b3f440429efcca3aac /systems/akashi.scm | |
parent | 9ddaed9a1bcc1d5e5b8af6817365d31641dfcb0c (diff) |
fix(akashi): correctly use the file system label
Diffstat (limited to 'systems/akashi.scm')
-rw-r--r-- | systems/akashi.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/systems/akashi.scm b/systems/akashi.scm index e909b28..efc2893 100644 --- a/systems/akashi.scm +++ b/systems/akashi.scm @@ -9,7 +9,7 @@ (list ((@ (gnu system file-systems) file-system) (type "ext4") (mount-point "/") - (device "akashi-root"))))) + (device (file-system-label "akashi-root")))))) (define keyboard-layout* ((@ (gnu system keyboard) keyboard-layout) |