Compare commits

...

2 commits

Author SHA1 Message Date
69574ba1f0 hosts/framenix: disable secureboot again
amdgpu + secureboot somehow manage to mess up graphics semi-persistently
after a long uptime.
2026-05-06 16:52:11 +02:00
73e7daf926 /boot: protect random seed file 2026-05-06 14:31:30 +02:00
3 changed files with 9 additions and 3 deletions

View file

@ -88,6 +88,6 @@ in
schmittlauch = { schmittlauch = {
audio-sharing.enable = true; audio-sharing.enable = true;
secureboot.enable = true; secureboot.enable = false;
}; };
} }

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" = {