tangled
alpha
login
or
join now
quasigod.xyz
/
nixconfig
8
fork
atom
My NixOS and Home Manager configurations
8
fork
atom
overview
issues
pulls
pipelines
set noatime on filesystems
quasigod.xyz
5 months ago
57e2816e
f4424766
verified
This commit was signed with the committer's
known signature
.
quasigod.xyz
SSH Key Fingerprint:
SHA256:IYQIQqk4Il5k+VDa+O4RM4mqCqVtyRilM/eLPbx2jjc=
+2
-1
1 changed file
expand all
collapse all
unified
split
hosts
hades
filesystems.nix
+2
-1
hosts/hades/filesystems.nix
···
4
4
fileSystems."/" = {
5
5
device = "/dev/disk/by-label/NIXROOT";
6
6
fsType = "btrfs";
7
7
-
options = [ "compress=zstd" ];
7
7
+
options = [ "compress=zstd" "noatime" ];
8
8
};
9
9
fileSystems."/boot" = {
10
10
device = "/dev/disk/by-label/NIXBOOT";
11
11
fsType = "vfat";
12
12
+
options = [ "noatime" ];
12
13
};
13
14
services = {
14
15
btrfs.autoScrub.enable = true;