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,19 +42,23 @@ in
] ]
++ ( ++ (
if hasDestopEnvironment then if hasDestopEnvironment then
[ if !isArm then
boxbuddy [
stable.chromium goverlay
firefox winboat
gamescope ]
gamescope-wsi else
gparted [
pkgs.unstable.goverlay boxbuddy
mission-center stable.chromium
parted firefox
vesktop gamescope
# winboat gamescope-wsi
] gparted
mission-center
parted
vesktop
]
else else
[ ] [ ]
); );