From a37ac14681d3d494abc00917724caf23fde1fe1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sat, 10 May 2025 12:51:14 +0200 Subject: [PATCH] disko/vanadium: disable compression on root and home --- nix/disko/vanadium/btrfs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/disko/vanadium/btrfs.nix b/nix/disko/vanadium/btrfs.nix index 9438a8bd..7ee68251 100644 --- a/nix/disko/vanadium/btrfs.nix +++ b/nix/disko/vanadium/btrfs.nix @@ -70,12 +70,12 @@ subvolumes = { "/root" = { - mountOptions = ["compress=zstd" "noatime"]; + mountOptions = ["noatime"]; mountpoint = "/"; }; "/home" = { - mountOptions = ["compress=zstd" "noatime"]; + mountOptions = ["noatime"]; mountpoint = "/home"; };