enable the sdx thingy only when it's not an aarch64 system

This commit is contained in:
Lillian Violet 2025-08-06 22:02:40 +02:00
parent 543efcc4a7
commit 35c4f668a0
2 changed files with 5 additions and 2 deletions

View file

@ -4,6 +4,7 @@
lib,
config,
pkgs,
mkIf,
...
}: {
imports = [
@ -151,7 +152,10 @@
};
};
services.scx.enable = true;
services.scx.enable =
if (pkgs.system == "aarch64-linux")
then false
else true;
fonts.packages = [
pkgs.atkinson-hyperlegible