aboutsummaryrefslogtreecommitdiff
path: root/tw/system/btl.scm
diff options
context:
space:
mode:
authorTimo Wilken2024-01-13 22:59:20 +0100
committerTimo Wilken2024-01-13 22:59:20 +0100
commitba9a0e4b06a1ffd437778c23c028186da1617cca (patch)
tree69cc4f122dcd787ae836604bf45ed501d1a88983 /tw/system/btl.scm
parentd0889cc9ab4de3deb57b4ebb084a6d7c5c9d7688 (diff)
Fix /home partition on btl
Diffstat (limited to 'tw/system/btl.scm')
-rw-r--r--tw/system/btl.scm5
1 files changed, 2 insertions, 3 deletions
diff --git a/tw/system/btl.scm b/tw/system/btl.scm
index fe143b16..d9e7359a 100644
--- a/tw/system/btl.scm
+++ b/tw/system/btl.scm
@@ -84,12 +84,11 @@
(type "vfat"))
;; Put /home in a subvolume for better accounting/snapshotting potential.
(file-system
- (device root-partition)
+ (device data-partition)
(mount-point "/home")
(flags '(no-atime))
(options (alist->file-system-options
- '("ssd" ("compress" . "zstd")
- ("subvol" . "home"))))
+ '("ssd" ("compress" . "zstd"))))
(type "btrfs"))
%base-file-systems))