From 54712e04265f1e74194fe8df0cc8f596af2e80d5 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 26 Dec 2025 05:34:05 +0900 Subject: [PATCH] nix: set noatime on sharefs Could improve performance, atime is not useful for this filesystem anyway. Signed-off-by: Ophestra --- nixos.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos.nix b/nixos.nix index 56cc4ee..215b790 100644 --- a/nixos.nix +++ b/nixos.nix @@ -85,6 +85,7 @@ in "noexec" "nosuid" "nodev" + "noatime" "auto_unmount" "allow_other" "clone_fd"