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

View File

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