2022-04-22 02:16:24 +03:00

102 lines
1.5 KiB
Nix

{ pkgs, config, lib, ... }:
with config.deviceSpecific; {
programs.adb.enable = true;
home-manager.users.alukard.home.packages = with pkgs; [
# cli
bat
comma
curl
exa
fd
ffmpeg.bin
# git-filter-repo
glib
# gptfdisk
kitti3
libqalculate
lm_sensors
lnav
nix-alien
nix-prefetch-git
nix-index-update
p7zip
# (p7zip.override { enableUnfree = true; })
pciutils
# pinfo
ripgrep
ripgrep-all
sd
tealdeer
# tidal-dl
unzip
usbutils
wget
yt-dlp
zip
# tui
bottom
bpytop
micro
ncdu
nix-tree
nnn
procs
ranger
# gui
bitwarden
discord
element-desktop
feh
foliate
gparted
jellyfin-media-player
keepassxc
# persepolis
pinta
qbittorrent
qimgv
quodlibet
system-config-printer
tdesktop
xarchiver
youtube-to-mpv
zathura
# libsForQt5.networkmanager-qt
# networkmanagerapplet
xdg-utils
# awesome-shell
curlie
duf
zsh-z
] ++ lib.optionals (!(isVM || isISO)) [
audacity
blueman
libreoffice
nodePackages.peerflix
samba
scrcpy
] ++ lib.optionals isGaming [
# ceserver
# ckan
# gamescope
goverlay
multimc
lutris
obs-studio
reshade-shaders
# (retroarch.override { cores = [ libretro.genesis-plus-gx ]; })
protontricks
vkBasalt
# wine
# winetricks
] ++ lib.optionals isLaptop [
acpi
seadrive-fuse
];
}