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";
|
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" = {
|
||||||
|
|
Loading…
Reference in New Issue