/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" = { "/boot" = {
device = "/dev/disk/by-uuid/AF8E-E9E6"; device = "/dev/disk/by-uuid/AF8E-E9E6";
fsType = "vfat"; fsType = "vfat";
options = [ "discard" ]; options = [
"discard"
"umask=077"
];
}; };
# nix/ lix build directory # nix/ lix build directory
# lix: # lix:

View file

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