summary refs log tree commit diff
path: root/modules/hardware
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2026-01-13 18:26:32 +0100
committerMel <mel@rnrd.eu>2026-01-13 18:26:32 +0100
commit38baaf6231abb5812170cb262d1dab0d63a521b6 (patch)
tree49aeb562cc6881e635b6f0bf231d845cc87654d7 /modules/hardware
parentba298b94ba56dabf116a93fbad3e5f96f76a2cb1 (diff)
downloadminerals-38baaf6231abb5812170cb262d1dab0d63a521b6.tar.zst
minerals-38baaf6231abb5812170cb262d1dab0d63a521b6.zip
Make 25.11 work on Apple M1 machine (Moissanite)
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'modules/hardware')
-rw-r--r--modules/hardware/arm.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/hardware/arm.nix b/modules/hardware/arm.nix
index 63a448f..28e0644 100644
--- a/modules/hardware/arm.nix
+++ b/modules/hardware/arm.nix
@@ -1,7 +1,7 @@
 {
   me,
   lib,
-  auxiliaryPkgs,
+  pkgs,
   ...
 }:
 
@@ -17,7 +17,7 @@ assert lib.assertMsg (
   # used to include replacements for necessary programs with no
   # default support for aarch64. (i.e. discord)
 
-  environment.systemPackages = with auxiliaryPkgs; [
-    equibop # discord
+  environment.systemPackages = with pkgs; [
+    vesktop
   ];
 }