nixos-config/modules/home/packages.nix

93 lines
1.2 KiB
Nix
Raw Normal View History

2023-11-05 17:56:55 +01:00
{
2025-07-30 16:33:52 +02:00
inputs,
lib,
pkgs,
config,
2025-07-30 16:33:52 +02:00
...
}:
{
2025-08-01 13:18:32 +02:00
home.packages = with pkgs; [
# Environment shit
tesseract
yubikey-touch-detector
wireguard-tools
openresolv
xdg-utils
killall
libnotify
openssl
pamixer
playerctl
wl-clipboard
cliphist
poweralertd
ffmpeg
zip
unzip
wget
xxd
gcc
gnumake
python3
2025-08-01 13:18:32 +02:00
# CLI shit
2025-09-09 08:14:05 +02:00
imagemagick
foot
2025-08-01 13:18:32 +02:00
termpdfpy
vimv
iamb
pass
lm_sensors
neofetch
hyfetch
glow
eva
exiftool
translate-shell
progress
pwgen
jq
tmux
htop
eza
file
fzf
lazygit
gitleaks
ripgrep
yt-dlp
nodejs_22
yarn
cargo
rustc
wikit
reader
nmap
speedtest-go
powertop
android-tools
sshpass
net-tools
nmap
2023-11-13 22:51: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>
# '')
2024-03-15 18:16:48 +01:00
2025-08-01 13:18:32 +02:00
inputs.alejandra.defaultPackage.${system}
inputs.nixvim.packages.${pkgs.system}.default
mermaid-cli
gnuplot
2024-09-25 14:09:25 +02:00
2025-08-01 13:18:32 +02:00
# Email/calendar/etc
neomutt
w3m
khard
khal
vdirsyncer
];
2023-11-05 11:40:44 +01:00
}