28 lines
377 B
Nix
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
|
|
];
|
|
};
|
|
}
|