disko: fix /boot being world-writeable

This commit is contained in:
Aly Raffauf 2024-06-14 12:54:19 -04:00
parent c83cedaf18
commit 4b44917e2d
4 changed files with 4 additions and 3 deletions

View file

@ -20,6 +20,7 @@
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = ["umask=0077"];
};
};
root = {

View file

@ -18,7 +18,7 @@
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"defaults"
"umask=0077"
];
};
};

View file

@ -18,7 +18,7 @@
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"defaults"
"umask=0077"
];
};
};

View file

@ -18,7 +18,7 @@
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"defaults"
"umask=0077"
];
};
};