reNixos/hand7s/home/packages.nix

51 lines
1.2 KiB
Nix

{
osConfig,
pkgs,
lib,
...
}: {
home = {
packages = with pkgs;
[
xh
fd
gh
sd
nvd
git
dust
procs
gping
dconf
tokei
ifuse
trippy
bottom
kubectl
yt-dlp
ripgrep
tty-clock
wireguard-tools
yubico-piv-tool
libimobiledevice
nix-output-monitor
yubikey-touch-detector
yubikey-personalization
]
++ lib.optionals (
osConfig.networking.hostName == "s0mePC-nix"
) [
tetrio-desktop
netbird-ui
thunderbird
mindustry
qbittorrent-enhanced
]
++ lib.optionals (
osConfig.networking.hostName == "s0melapt0p-nix"
) [
iwgtk
brightnessctl
];
};
}