Files
nix-config/users/phundrak/packages.nix

90 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
2025-11-01 12:15:06 +01:00
bitwarden-desktop
2025-07-27 22:50:25 +02:00
gplates
libnotify
nextcloud-client
2025-11-01 12:15:06 +01:00
onlyoffice-desktopeditors
2025-07-27 22:50:25 +02:00
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
dbeaver-bin
2025-07-27 22:50:25 +02:00
devenv
nodejs
sqlite
2025-07-27 22:50:25 +02:00
tectonic # better LaTeX engine
wakatime-cli
2025-07-27 22:50:25 +02:00
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
nixd
marksman
2025-07-27 22:50:25 +02:00
python3 # for Emacs and LSP
vscode-json-languageserver
2025-07-27 22:50:25 +02:00
yaml-language-server # Yaml (Docker, GitHub Actions, ...)
];
2025-05-04 02:47:36 +02:00
}