System/Nixinator: Mount /boot with umask=077
This commit is contained in:
@ -8,6 +8,8 @@
|
|||||||
type = "gpt";
|
type = "gpt";
|
||||||
partitions = {
|
partitions = {
|
||||||
ESP = {
|
ESP = {
|
||||||
|
# NOTE: The disk identification uses /dev/disk/by-partlabel,
|
||||||
|
# so make sure this matches the actual partlabel!!!
|
||||||
label = "EFI";
|
label = "EFI";
|
||||||
size = "512M";
|
size = "512M";
|
||||||
type = "EF00";
|
type = "EF00";
|
||||||
@ -15,7 +17,7 @@
|
|||||||
type = "filesystem";
|
type = "filesystem";
|
||||||
format = "vfat";
|
format = "vfat";
|
||||||
mountpoint = "/boot";
|
mountpoint = "/boot";
|
||||||
mountOptions = ["defaults"];
|
mountOptions = ["umask=077"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
luks = {
|
luks = {
|
||||||
|
Reference in New Issue
Block a user