/boot: protect random seed file

This commit is contained in:
Trolli Schmittlauch 2026-05-06 14:31:13 +02:00
parent 73c1ae11e7
commit 73e7daf926
2 changed files with 8 additions and 2 deletions

View file

@ -37,7 +37,10 @@ in
"/boot" = {
device = "/dev/disk/by-uuid/AF8E-E9E6";
fsType = "vfat";
options = [ "discard" ];
options = [
"discard"
"umask=077"
];
};
# nix/ lix build directory
# lix:

View file

@ -35,7 +35,10 @@ in
"/boot" = {
device = "/dev/disk/by-uuid/DED9-661B";
fsType = "vfat";
options = [ "discard" ];
options = [
"discard"
"umask=077"
];
};
"/home" = {