This commit is contained in:
2026-02-18 21:23:56 +01:00
commit 11ce3ba32f
41 changed files with 2422 additions and 0 deletions

27
home/packages.nix Normal file
View File

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