fix(fs): Use fmask=0077, dmask=0077

This commit is contained in:
demenik
2025-12-20 15:03:08 +01:00
parent 28a1a1db4b
commit e7b6b488d9
3 changed files with 6 additions and 2 deletions

View File

@@ -19,7 +19,7 @@
fileSystems."/boot" = {
device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
options = ["fmask=0022" "dmask=0022"];
options = ["fmask=0077" "dmask=0077"];
};
swapDevices = [];

View File

@@ -19,7 +19,7 @@
fileSystems."/boot" = {
device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
options = ["fmask=0022" "dmask=0022"];
options = ["fmask=0077" "dmask=0077"];
};
swapDevices = [];