From a2822c0752a9c3df23f41ba64410bedc7afdcd14 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Sat, 20 Jan 2024 12:35:48 +0800 Subject: [PATCH] fix(fs): add noatime option --- global/fs/ext4.nix | 1 + global/fs/xfs.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/global/fs/ext4.nix b/global/fs/ext4.nix index 9a6f990c..109c29cc 100644 --- a/global/fs/ext4.nix +++ b/global/fs/ext4.nix @@ -6,5 +6,6 @@ in mkIf (cfg.type == "ext4") { fileSystems."/nix" = { device = "/dev/disk/by-uuid/${cfg.store}"; fsType = "ext4"; + options = [ "noatime" ]; }; } diff --git a/global/fs/xfs.nix b/global/fs/xfs.nix index ec7de391..42c8c7ea 100644 --- a/global/fs/xfs.nix +++ b/global/fs/xfs.nix @@ -7,5 +7,6 @@ in mkIf (cfg.type == "xfs") { fileSystems."/nix" = { device = "/dev/disk/by-uuid/${cfg.store}"; fsType = "xfs"; + options = [ "noatime" ]; }; }