This commit is contained in:
2026-03-30 11:56:27 -05:00
parent 62736ed77c
commit 6d6618a683
9 changed files with 28 additions and 14 deletions

View File

@@ -4,10 +4,12 @@
pkgs,
namespace,
hasDestopEnvironment ? true,
system,
...
}:
let
inherit (lib.${namespace}) enabled;
isArm = ("aarch64-linux" == system) || ("aarch64-darwin" == system);
# Non-login / system accounts (root, nixos installer, etc.) should not get
# desktop packages, tmux, nh, kdeconnect, nextcloud-client, etc.
# Detect them by username so individual host home files are not needed.
@@ -40,7 +42,6 @@ in
nix-prefetch-scripts
nixfmt
pciutils
proton-pass
proton-pass-cli
proton-vpn-cli
protonvpn-gui
@@ -67,7 +68,14 @@ in
mission-center
parted
vesktop
]
] ++ (
if isArm then
[ ]
else
[
proton-pass
]
)
else
[ ]
)