32 lines
522 B
Nix
32 lines
522 B
Nix
{ pkgs, ... }: {
|
|
home = {
|
|
packages = with pkgs; [
|
|
# dev tools
|
|
curl
|
|
wget
|
|
vim
|
|
htop
|
|
tree
|
|
ripgrep
|
|
gh # Move to git
|
|
zoxide # Move to fish
|
|
unrar
|
|
|
|
# programming languages
|
|
#mise # node, deno, bun, rust, python, etc.
|
|
|
|
# PDF Tools
|
|
pandoc
|
|
texlive.combined.scheme-full
|
|
wkhtmltopdf
|
|
|
|
# misc
|
|
nil # move to nixvim
|
|
biome # move to nixvim
|
|
nixfmt-rfc-style # move to nixvim
|
|
yt-dlp
|
|
ffmpeg
|
|
];
|
|
};
|
|
}
|