46 lines
782 B
Nix
46 lines
782 B
Nix
{ pkgs, ... }: {
|
|
home = {
|
|
packages = with pkgs; [
|
|
# dev tools
|
|
curl
|
|
wget
|
|
vim
|
|
htop
|
|
tree
|
|
ripgrep
|
|
gh # Move to git
|
|
zoxide # Move to fish
|
|
|
|
# programming languages
|
|
#mise # node, deno, bun, rust, python, etc.
|
|
|
|
# GUI
|
|
openscad
|
|
# element-desktop
|
|
# zapzap
|
|
# audacity
|
|
blender
|
|
fstl
|
|
# sqlitebrowser
|
|
|
|
# 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
|
|
ollama # move to nixvim
|
|
|
|
# fonts
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.fira-mono
|
|
nerd-fonts.hack
|
|
];
|
|
};
|
|
}
|