From 34619bec867281e9b65c478d6e017dcc5bd71349 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sat, 15 Nov 2025 22:49:59 +0800 Subject: [PATCH] vanadium/disko: try compressing /home --- nix/disko/vanadium/btrfs.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nix/disko/vanadium/btrfs.nix b/nix/disko/vanadium/btrfs.nix index 84b9efb0..11ae7b66 100644 --- a/nix/disko/vanadium/btrfs.nix +++ b/nix/disko/vanadium/btrfs.nix @@ -75,7 +75,10 @@ }; "/home" = { - mountOptions = [ "noatime" ]; + mountOptions = [ + "compress=zstd" + "noatime" + ]; mountpoint = "/home"; };