From 793c3c136375e77546360a6eb7686a75bba0bb14 Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 13 Oct 2021 10:28:38 -0700 Subject: [PATCH] Try removing 'noexec' flag on socrates fs. Maybe that's what is causing fonts to fail to build? --- config/hardware/socrates.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hardware/socrates.nix b/config/hardware/socrates.nix index 15d7e5e..9358c1d 100644 --- a/config/hardware/socrates.nix +++ b/config/hardware/socrates.nix @@ -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" = {