tools: init
This commit is contained in:
parent
4a0dbac108
commit
ff335788e8
2 changed files with 42 additions and 0 deletions
|
|
@ -2,5 +2,6 @@
|
|||
imports = [
|
||||
./nix.nix
|
||||
./pubkeys.nix
|
||||
./tools.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
41
modules/tools.nix
Normal file
41
modules/tools.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue