Make /boot only accessible by root for security reasons
This commit is contained in:
parent
a78fd31432
commit
1f4d922fbe
1 changed files with 6 additions and 0 deletions
|
@ -15,6 +15,12 @@
|
|||
type = "filesystem";
|
||||
format = "vfat";
|
||||
mountpoint = "/boot";
|
||||
mountOptions = [
|
||||
"uid=0"
|
||||
"gid=0"
|
||||
"fmask=0077"
|
||||
"dmask=0077"
|
||||
];
|
||||
};
|
||||
};
|
||||
raid_system = {
|
||||
|
|
Loading…
Add table
Reference in a new issue