Try removing 'noexec' flag on socrates fs.

Maybe that's what is causing fonts to fail to build?
This commit is contained in:
niten 2021-10-13 10:28:38 -07:00
parent 6ada43a205
commit 793c3c1363
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@
"/" = { "/" = {
device = "socrates-root"; device = "socrates-root";
fsType = "tmpfs"; fsType = "tmpfs";
options = [ "mode=755" "noexec" ]; options = [ "mode=755" ];
}; };
"/boot" = { "/boot" = {
@ -77,7 +77,7 @@
"/state" = { "/state" = {
device = "/dev/disk/by-label/socrates-data"; device = "/dev/disk/by-label/socrates-data";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@state" "compress=zstd" "noatime" "nodiratime" "noexec" ]; options = [ "subvol=@state" "compress=zstd" "noatime" "nodiratime" ];
}; };
"/home" = { "/home" = {