nix-gscheits/modules/tools.nix
2021-07-18 15:13:35 +02:00

41 lines
614 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
exa
fd
file
git
htop
iperf
ncdu
pv
ripgrep
smartmontools
speedtest-cli
tmate
tmux
wget
];
}