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 [ ] );