Files
cyper-rpi/home/packages.nix
2026-02-11 11:04:59 +01:00

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
];
};
}