From e61fd16e069dff99e8382e2d131b16f0a1cf53ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Tue, 6 May 2025 21:44:25 +0200 Subject: [PATCH] disko/vanadium: mount root with noatime --- nix/disko/vanadium/btrfs.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/disko/vanadium/btrfs.nix b/nix/disko/vanadium/btrfs.nix index dae326ba..e93813f9 100644 --- a/nix/disko/vanadium/btrfs.nix +++ b/nix/disko/vanadium/btrfs.nix @@ -70,11 +70,12 @@ subvolumes = { "/root" = { + mountOptions = ["compress=zstd" "noatime"]; mountpoint = "/"; }; "/home" = { - mountOptions = ["compress=zstd"]; + mountOptions = ["compress=zstd" "noatime"]; mountpoint = "/home"; };