summary refs log tree commit diff
path: root/modules/hardware
diff options
context:
space:
mode:
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
   ];
 }