Make /boot only accessible by root for security reasons

This commit is contained in:
Fabian Hauser 2025-02-22 21:53:18 +02:00
parent a78fd31432
commit 1f4d922fbe

View file

@ -15,6 +15,12 @@
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"uid=0"
"gid=0"
"fmask=0077"
"dmask=0077"
];
};
};
raid_system = {