From 404a0b34c21411b21a3c739a4ce226016ad2b277 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 4 Oct 2023 11:05:00 +0200 Subject: [PATCH] fix: mount options --- hosts/yodaTab/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/yodaTab/configuration.nix b/hosts/yodaTab/configuration.nix index e3bd537..aedb557 100644 --- a/hosts/yodaTab/configuration.nix +++ b/hosts/yodaTab/configuration.nix @@ -69,6 +69,7 @@ in # TODO: For "/" this cfg resides in base.nix fileSystems = { - "/mnt/512gb".options = [ "compress=zstd" "noatime" "commit=120" ]; + # Ext4 not BTRFS + "/mnt/512gb".options = [ "noatime" "commit=60" ]; }; }