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

33 lines
535 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
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
# 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
];
}