nixos-config/modules/home/packages.violet.nix

36 lines
447 B
Nix
Raw Normal View History

2024-07-15 10:20:12 +02:00
{ inputs, pkgs, ... }:
{
home.packages = with pkgs; [
vimv
2024-07-15 10:20:12 +02:00
jq
tmux
htop
eza
file
fzf
lazygit
ripgrep
yt-dlp
neofetch
yarn
# C / C++
gcc
gnumake
# Python
python3
ffmpeg
killall
libnotify
man-pages # extra man pages
openssl
unzip
wget
xxd
inputs.alejandra.defaultPackage.${system}
2024-07-22 14:44:20 +02:00
inputs.nixvim.defaultPackage.${system}
2024-07-15 10:20:12 +02:00
];
}