From f999d4d67a7440d1281b9a1fc69458eab5d2761f Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 13 Jul 2025 02:53:13 +0200 Subject: Replace non-ARM Discord package with Equibop (custom client) Signed-off-by: Mel --- modules/arm.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/arm.nix (limited to 'modules/arm.nix') diff --git a/modules/arm.nix b/modules/arm.nix new file mode 100644 index 0000000..ac688df --- /dev/null +++ b/modules/arm.nix @@ -0,0 +1,19 @@ +{ + me, + lib, + pkgs, + ... +}: + +assert lib.assertMsg ( + me.system == "aarch64-linux" +) "arm module included on non-arm (${me.system}) architecture."; +{ + # non-machine specific arm package selection. + # used to include replacements for necessary programs with no + # default support for aarch64. (i.e. discord) + + environment.systemPackages = with pkgs; [ + equibop # discord + ]; +} -- cgit 1.4.1