38 lines
499 B
Nix
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
|
|
];
|
|
}
|