nixos-config/modules/home/packages.nix

72 lines
1.1 KiB
Nix
Raw Normal View History

2025-12-28 12:06:42 +01:00
{ pkgs, ... }:
2025-07-30 16:33:52 +02:00
{
2025-08-01 13:18:32 +02:00
home.packages = with pkgs; [
# Environment shit
ffmpeg
zip
unzip
wget
xxd
gcc
gnumake
python3
# qbittorrent
2026-02-17 21:57:58 +01:00
mpv
qutebrowser
2025-08-01 13:18:32 +02:00
# CLI shit
2025-09-09 08:14:05 +02:00
imagemagick
2025-08-01 13:18:32 +02:00
vimv
pass
neofetch
hyfetch
glow
eva
exiftool
translate-shell
progress
pwgen
jq
tmux
eza
file
fzf
lazygit
gitleaks
ripgrep
yt-dlp
nodejs_22
yarn
cargo
rustc
nmap
2026-02-09 23:29:25 +01:00
speedtest-go
2025-08-01 13:18:32 +02:00
android-tools
sshpass
net-tools
nmap
aerc
2026-02-09 23:29:25 +01:00
w3m
2023-11-13 22:51:35 +01:00
2026-02-09 23:29:25 +01:00
# aspell
# aspellDicts.de
# aspellDicts.nl
# aspellDicts.uk
2026-01-26 21:02:35 +01:00
# Hunspell dictionaries for spell checking
2026-02-09 23:29:25 +01:00
# hunspell
# hunspellDicts.de_DE # German
# hunspellDicts.en_GB-ise # UK English with -ise spellings
# hunspellDicts.en_US
# hunspellDicts.nl_NL # Dutch
# hunspellDicts.nl_nl # Dutch (alternative)
2026-01-26 21:02:35 +01:00
2025-08-01 13:18:32 +02:00
# Install pip packages
# python3
# python3Packages.pip
# (writeShellScriptBin "install-pip-packages" '' # This script does not run, yet.
# pip install --user --break-system-packages <package>
# '')
];
2023-11-05 11:40:44 +01:00
}