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

37 lines
570 B
Nix
Raw Normal View History

2024-07-15 10:20:12 +02:00
{ inputs, pkgs, ... }:
{
home.packages = with pkgs; [
jq
2024-08-21 15:26:21 +02:00
wireguard-tools # VPN connections
openresolv # required for wireguard-tools
2024-07-15 10:20:12 +02:00
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}
inputs.nixvim.packages.${pkgs.system}.default
2024-07-15 10:20:12 +02:00
];
}