1

System/Nixinator: Mount /boot with umask=077

This commit is contained in:
2025-07-15 23:06:52 +02:00
parent 62421754ef
commit d45cf6ce7d

View File

@ -8,6 +8,8 @@
type = "gpt";
partitions = {
ESP = {
# NOTE: The disk identification uses /dev/disk/by-partlabel,
# so make sure this matches the actual partlabel!!!
label = "EFI";
size = "512M";
type = "EF00";
@ -15,7 +17,7 @@
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = ["defaults"];
mountOptions = ["umask=077"];
};
};
luks = {