This commit is contained in:
2026-03-03 13:56:59 -06:00
parent d856b57f13
commit 9a962363e8

View File

@@ -4,10 +4,12 @@
pkgs, pkgs,
namespace, namespace,
hasDestopEnvironment ? true, hasDestopEnvironment ? true,
system,
... ...
}: }:
let let
inherit (lib.${namespace}) enabled; inherit (lib.${namespace}) enabled;
isArm = ("aarch64-linux" == system) || ("aarch64-darwin" == system);
in in
{ {
home = { home = {
@@ -40,6 +42,12 @@ in
] ]
++ ( ++ (
if hasDestopEnvironment then if hasDestopEnvironment then
if !isArm then
[
goverlay
winboat
]
else
[ [
boxbuddy boxbuddy
stable.chromium stable.chromium
@@ -47,11 +55,9 @@ in
gamescope gamescope
gamescope-wsi gamescope-wsi
gparted gparted
pkgs.unstable.goverlay
mission-center mission-center
parted parted
vesktop vesktop
# winboat
] ]
else else
[ ] [ ]