summary refs log tree commit diff
path: root/modules/arm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/arm.nix')
-rw-r--r--modules/arm.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/arm.nix b/modules/arm.nix
deleted file mode 100644
index 63a448f..0000000
--- a/modules/arm.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{
-  me,
-  lib,
-  auxiliaryPkgs,
-  ...
-}:
-
-assert lib.assertMsg (
-  me.system == "aarch64-linux"
-) "arm module included on non-arm (${me.system}) architecture.";
-{
-  # disable things that just don't work on arm.
-
-  programs.steam.enable = lib.mkForce false;
-
-  # 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 auxiliaryPkgs; [
-    equibop # discord
-  ];
-}