From fc97c7937afc8ea8dbc6f77c04228279782f8816 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Sun, 8 Feb 2026 07:44:37 -0500 Subject: [PATCH] tweak(personal): edit filesystem metadata --- aether/hardware-configuration.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/aether/hardware-configuration.nix b/aether/hardware-configuration.nix index 66b07f6..813698e 100644 --- a/aether/hardware-configuration.nix +++ b/aether/hardware-configuration.nix @@ -16,12 +16,18 @@ fileSystems."/" = { device = "/dev/disk/by-uuid/278088c7-1e81-4aec-ae7a-849bbfb4c8bc"; fsType = "ext4"; + options = [ "noatime" ]; }; - fileSystems."/boot" = + fileSystems."/boot/firmware" = { device = "/dev/disk/by-uuid/56DC-DAA1"; fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; + options = [ + "noatime" + "noauto" + "x-systemd.automount" + "x-systemd.idle-timeout=1min" + ]; }; swapDevices =