Files
cyper-rpi/home/packages.nix
2026-02-11 22:44:15 +01:00

28 lines
377 B
Nix

{ pkgs, ... }:
{
home = {
packages = with pkgs; [
# dev tools
curl
wget
vim
htop
tree
ripgrep
unrar
# programming languages
#mise # node, deno, bun, rust, python, etc.
# PDF Tools
#pandoc
#texlive.combined.scheme-full
#wkhtmltopdf
# misc
yt-dlp
ffmpeg
];
};
}