40 lines
606 B
Nix
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
|
|
];
|
|
}
|