From 971fe5f7b0b232e88519a92a8a2bac7fb92fb181 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sun, 12 May 2024 16:42:10 +0300 Subject: [PATCH] vfat also has noatime --- hosts/disk/hardware.nix | 5 +++-- hosts/enka/hardware.nix | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/hosts/disk/hardware.nix b/hosts/disk/hardware.nix index 48aeeee..a6bc25e 100644 --- a/hosts/disk/hardware.nix +++ b/hosts/disk/hardware.nix @@ -18,8 +18,9 @@ systemConfiguration { }; fileSystems.${config.boot.loader.efi.efiSysMountPoint} = { - device = "/dev/disk/by-label/boot"; - fsType = "vfat"; + device = "/dev/disk/by-label/boot"; + fsType = "vfat"; + options = [ "noatime" ]; }; swapDevices = [{ diff --git a/hosts/enka/hardware.nix b/hosts/enka/hardware.nix index a60b893..266a02b 100644 --- a/hosts/enka/hardware.nix +++ b/hosts/enka/hardware.nix @@ -24,8 +24,9 @@ systemConfiguration { }; fileSystems.${config.boot.loader.efi.efiSysMountPoint} = { - device = "/dev/disk/by-label/boot"; - fsType = "vfat"; + device = "/dev/disk/by-label/boot"; + fsType = "vfat"; + options = [ "noatime" ]; }; swapDevices = [{