My NixOS and Home Manager configurations

set noatime on filesystems

quasigod.xyz 57e2816e f4424766

verified
+2 -1
+2 -1
hosts/hades/filesystems.nix
··· 4 4 fileSystems."/" = { 5 5 device = "/dev/disk/by-label/NIXROOT"; 6 6 fsType = "btrfs"; 7 - options = [ "compress=zstd" ]; 7 + options = [ "compress=zstd" "noatime" ]; 8 8 }; 9 9 fileSystems."/boot" = { 10 10 device = "/dev/disk/by-label/NIXBOOT"; 11 11 fsType = "vfat"; 12 + options = [ "noatime" ]; 12 13 }; 13 14 services = { 14 15 btrfs.autoScrub.enable = true;