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

View file

@ -14,7 +14,6 @@ rustPlatform.buildRustPackage rec {
hash = "sha256-cITZdlDB03i7gOYbahV99wZOQ7tisnqdT/N2Z12oLFM="; hash = "sha256-cITZdlDB03i7gOYbahV99wZOQ7tisnqdT/N2Z12oLFM=";
}; };
useFetchCargoVendor = true;
cargoHash = "sha256-nannF4BKRLCcsS7VznzEHqrhLHYvN4X22t8jud87XEM="; cargoHash = "sha256-nannF4BKRLCcsS7VznzEHqrhLHYvN4X22t8jud87XEM=";
meta = with lib; { meta = with lib; {
description = "Language server to enable word completion and snippets for Helix editor"; description = "Language server to enable word completion and snippets for Helix editor";