enable the sdx thingy only when it's not an aarch64 system
This commit is contained in:
parent
543efcc4a7
commit
35c4f668a0
2 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue