nixos-config/modules/home/packages.nix

128 lines
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
...
}:
with lib;
let
guiPkgs =
if (config.liv.gui == true) then
[
element-desktop
gajim
signal-desktop
anki-bin
obs-studio
wdisplays
librewolf # main
ungoogled-chromium # for things that don't work with librewolf
nsxiv
imv
libreoffice
xfce.thunar
spotify
spotify-player
thunderbird
lxqt.pavucontrol-qt
mpv
plasma5Packages.kdeconnect-kde
# onthespot-overlay
2025-03-01 21:54:05 +01:00
2025-07-30 16:33:52 +02:00
# Gaming
lunar-client
]
else
[
killall
];
in
{
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-07-30 16:33:52 +02:00
# CLI shit
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
delta
powertop
android-tools
sshpass
net-tools
nmap
2023-11-13 22:51:35 +01:00
2025-07-30 16:33:52 +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-07-30 16:33:52 +02:00
inputs.alejandra.defaultPackage.${system}
inputs.nixvim.packages.${pkgs.system}.default
mermaid-cli
gnuplot
2024-09-25 14:09:25 +02:00
2025-07-30 16:33:52 +02:00
# Email/calendar/etc
neomutt
w3m
khard
khal
vdirsyncer
]
++ guiPkgs;
2023-11-05 11:40:44 +01:00
}