mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
92 lines
1.2 KiB
Nix
92 lines
1.2 KiB
Nix
{
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
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
|
|
|
|
# CLI shit
|
|
imagemagick
|
|
foot
|
|
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
|
|
|
|
# Install pip packages
|
|
# python3
|
|
# python3Packages.pip
|
|
# (writeShellScriptBin "install-pip-packages" '' # This script does not run, yet.
|
|
# pip install --user --break-system-packages <package>
|
|
# '')
|
|
|
|
inputs.alejandra.defaultPackage.${system}
|
|
inputs.nixvim.packages.${pkgs.system}.default
|
|
mermaid-cli
|
|
gnuplot
|
|
|
|
# Email/calendar/etc
|
|
neomutt
|
|
w3m
|
|
khard
|
|
khal
|
|
vdirsyncer
|
|
];
|
|
}
|