This commit is contained in:
2026-02-11 11:04:59 +01:00
commit 50d930e1ff
31 changed files with 2249 additions and 0 deletions

31
home/packages.nix Normal file
View File

@@ -0,0 +1,31 @@
{ 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
];
};
}