nix-config/users/phundrak/packages.nix

86 lines
1.5 KiB
Nix
Raw Normal View History

2025-05-04 02:47:36 +02:00
{
pkgs,
inputs,
lib,
...
}:
2025-07-27 22:50:25 +02:00
with lib; {
home.packages = with pkgs; [
# Terminal stuff
duf
ffmpeg
ripgrep-all
unzip
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
# Fonts
#nerdfonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
tibetan-machine
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
# Browsers
amfora
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
# Media
ani-cli
audacity
plexamp
plex-desktop
spicetify-cli
spotify
pavucontrol # Volume control
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
# Social
vesktop # Discord alternative that works well with wayland
element-desktop
signal-desktop-bin
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
# Misc
bitwarden
gplates
libnotify
nextcloud-client
onlyoffice-bin
scrcpy
syncthing
watchmate
inputs.zen-browser.packages.${system}.default
inputs.pumo-system-info.packages.${system}.default
inputs.quickshell.packages.${system}.default
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
# Games
atlauncher
heroic
openmw
openttd-jgrpp
moonlight-qt
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
# Gnome stuff
gnome-tweaks
gnomeExtensions.docker
gnomeExtensions.syncthing-indicator
gnomeExtensions.tray-icons-reloaded
gthumb
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
# Graphics
inkscape
gimp
gimpPlugins.gmic
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
# Dev
devenv
dive # A tool for exploring each layer in a docker image
grype # Vulnerability scanner for container images and filesystems
tectonic # better LaTeX engine
zeal
2025-05-04 02:47:36 +02:00
2025-07-27 22:50:25 +02:00
## LSP servers
bash-language-server
docker-language-server
kdePackages.qtdeclarative # For QML LSP
nil # Nix
python3 # for Emacs and LSP
yaml-language-server # Yaml (Docker, GitHub Actions, ...)
];
2025-05-04 02:47:36 +02:00
}