summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2022-02-02 12:24:19 +0100
committerEkaitz Zarraga <ekaitz@elenq.tech>2022-02-02 12:24:19 +0100
commit62c38b366cbeef19216a51f75b6cdd92098cdf70 (patch)
tree97f76e36aa199e05bab315476fb31c2fb9c25bc9
parent6f0cbdd2e0cc12eadb4d38ddff62f7ec6020dd1b (diff)
Move home partition to other device
-rw-r--r--desktop.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/desktop.scm b/desktop.scm
index 48b96da..a41e678 100644
--- a/desktop.scm
+++ b/desktop.scm
@@ -30,7 +30,7 @@
(bootloader
(bootloader-configuration
(bootloader grub-efi-bootloader)
- (target "/boot/efi")
+ (targets (list "/boot/efi"))
(keyboard-layout keyboard-layout)
; Doesn't work (YET)
@@ -42,7 +42,8 @@
(initrd "/initrd"))
'()))))
- (swap-devices (list "/dev/sda3"))
+ (swap-devices
+ (list (swap-space (target "/dev/sda3"))))
(file-systems
(cons* (file-system
(mount-point "/boot/efi")
@@ -57,7 +58,7 @@
(file-system
(mount-point "/home")
(device
- (uuid "abed4b79-5f03-409f-84ee-7cb0b3af72af"
+ (uuid "49ebc09e-6021-4730-a467-b8818c2128f1"
'ext4))
(type "ext4"))
%base-file-systems))