nix-gscheits/modules/tools.nix
2024-03-06 23:25:28 +00:00

40 lines
606 B
Nix

{ pkgs, ... }:
{
programs = {
bandwhich.enable = true;
iotop.enable = true;
mtr.enable = true;
neovim = {
enable = true;
vimAlias = true;
viAlias = true;
defaultEditor = true;
};
zsh.enable = true;
};
users.defaultUserShell = pkgs.zsh;
environment.etc."zshrc.local".source = "${pkgs.grml-zsh-config}/etc/zsh/zshrc";
environment.systemPackages = with pkgs; [
bmon
compsize
curl
dnsutils
fd
file
git
htop
iperf
ncdu
pv
ripgrep
smartmontools
speedtest-cli
tmate
tmux
wget
];
}