Try removing 'noexec' flag on socrates fs.
Maybe that's what is causing fonts to fail to build?
This commit is contained in:
parent
6ada43a205
commit
793c3c1363
|
@ -53,7 +53,7 @@
|
|||
"/" = {
|
||||
device = "socrates-root";
|
||||
fsType = "tmpfs";
|
||||
options = [ "mode=755" "noexec" ];
|
||||
options = [ "mode=755" ];
|
||||
};
|
||||
|
||||
"/boot" = {
|
||||
|
@ -77,7 +77,7 @@
|
|||
"/state" = {
|
||||
device = "/dev/disk/by-label/socrates-data";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@state" "compress=zstd" "noatime" "nodiratime" "noexec" ];
|
||||
options = [ "subvol=@state" "compress=zstd" "noatime" "nodiratime" ];
|
||||
};
|
||||
|
||||
"/home" = {
|
||||
|
|
Loading…
Reference in New Issue