From 9a962363e85e35470826559970298139857cfdcc Mon Sep 17 00:00:00 2001 From: Matt Jallen Date: Tue, 3 Mar 2026 13:56:59 -0600 Subject: [PATCH] asahi --- modules/home/home/default.nix | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/modules/home/home/default.nix b/modules/home/home/default.nix index 620b653..ddabf05 100644 --- a/modules/home/home/default.nix +++ b/modules/home/home/default.nix @@ -4,10 +4,12 @@ pkgs, namespace, hasDestopEnvironment ? true, + system, ... }: let inherit (lib.${namespace}) enabled; + isArm = ("aarch64-linux" == system) || ("aarch64-darwin" == system); in { home = { @@ -40,19 +42,23 @@ in ] ++ ( if hasDestopEnvironment then - [ - boxbuddy - stable.chromium - firefox - gamescope - gamescope-wsi - gparted - pkgs.unstable.goverlay - mission-center - parted - vesktop - # winboat - ] + if !isArm then + [ + goverlay + winboat + ] + else + [ + boxbuddy + stable.chromium + firefox + gamescope + gamescope-wsi + gparted + mission-center + parted + vesktop + ] else [ ] );