nix-config/modules/nixos/default.pkgs.nix
2026-07-18 17:53:32 +02:00

38 lines
499 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
age
# Editors
neovim
tree-sitter
# Dev-tools
git
lazygit # git TUI
# Other
bottom
btop
dig
gdu # Disk usage with console interface
htop
imagemagick
openssl
rsync
tmux
unzip
wget
zip
];
programs.direnv.enable = true;
fonts.packages = with pkgs; [
roboto
nerd-fonts._0xproto
nerd-fonts.adwaita-mono
nerd-fonts.jetbrains-mono
];
}